@charset "UTF-8";
/* CSS Document */

/* These styles let you use the class floatcontainer on an element that contains floats to 1.) make its height include those floats for the purposes of backgrounds and borders, and 2.) prevent elements after it from flowing around the floats.  */

/* For standards compliant browsers: add an invisible period after any float container with clear:both */
.floatcontainer:after {
	content: ".";
	clear:both;
	display:block;
	height: 0;
	visibility:hidden;
}

/* The "Holly Hack" for IE 5/6 */
* html .floatcontainer { 
	height: 1%; 	
}

/* And an even uglier hack for IE 7 */ 
*:first-child+html .floatcontainer { 
	min-height: 1px;
}


