﻿/***
* This CSS forces a parent container to expand to the width of any child DIV's
*
* The standard way to clear a block is to add <br style="clear both"> at hte very end of the content.
*/


.clear:after {
	content: ".";
	display: block;
	height: 0;
	font-size: 0;
	clear: both;
	visibility: hidden;
}
.clear {
	zoom: 1;
}

