﻿#twoColRow {
	display:table;
}
#layoutLeftCol {
	display: table-cell;
	margin-top: 5px;
	width:70%;
	max-width: 70%;
	padding-right: 20px;
	vertical-align: top;
}
				
#layoutRightCol {
	display: table-cell;
	margin-top: 5px;
	width:30%;
	max-width:30%;
	vertical-align: top;
}

@media screen and (max-width: 700px) {
	#twoColRow {
		display: block;
	}
	#layoutLeftCol {
		display:block;
		width:100% !important;
		max-width:100%;
	}
				
	#layoutRightCol {
		display:block;
		width:100% !important;
		max-width:100%;
	}
}