/*
  css used to correctly clear floats accross all browsers
  put the container class on any 'container' with floats inside
  **clearfix method
*/

.container:after {
	content:".";
	display:block;
	height:0;
	clear:both;
	visibility:hidden;
}
.container {display:inline-block;}
/* Hide from IE Mac \*/
.container {display:block;}
/* End hide from IE Mac */
* html .container {height:1px;}