@charset "utf-8";
/* CSS Document */
* {
	box-sizing: border-box;
}
/* Create two unequal columns that floats next to each other */
.column {
	padding: 0px;
	width: auto;
}
.left_image {
	width: 200px;
	height: auto;
	float: left;
	margin-top: 10px;
	position: relative;
}
.right_image {
	width: 300px;
	height: auto;
	float: right;
	margin-top: 20px;
	position: relative;
}
.middle {
	width: 45%;
}
.right_textbox {
	width: 550px;
	height: auto;
	position: relative;
	float: right;
	margin-top: 20px;
	margin-left: 10px;
}
.left_textbox {
	width: 447px;
	height: auto;
	position: relative;
	float: left;
	margin-top: 20px;
	margin-right: 20px;
}
/* Clear floats after the columns */
.row {
	content: "";
	display: table;
	clear: both;
	float: none;
}
