@charset "utf-8";
/* CSS Document */
* {
    box-sizing: border-box;
}

/* Create three unequal columns that floats next to each other */
.column {
    float: left;
    padding: 0px;
    height: 180px;
}

.left {
	width: 35%;

}
.left80 {
	width: 80%;
	height: auto;
}

.middle {
	width: 45%;
	height: auto;
}
.right {
    margin-left: 30px;
    width: 30px;
    text-align: center;
}
/* Clear floats after the columns */
.row:after {
	content: "";
	display: table;
	clear: both;
}
@media (max-width: 600px) {
    .column {
        width: 100%;
    }
}
