/* CSS Document - SHOW ALL DIVS */

/* reset all margins */
* {
	margin:0;
	padding:0;
}



body {
	font:1em/normal Verdana, Arial, Helvetica, sans-serif;
}

#Wrapper {
	margin:0 auto 0 auto;
	text-align:center;
	width:1000px;
}

#Header {}
	
#MainSection {margin:10px 0 10px 0;}	
		
#Navigation {
	float:left;
	margin-right:10px;
	padding:5px 15px 10px 15px;
	text-align:right;
	width:156px;
}
		
#MainContent {
	float:left;
	min-height:400px;
	padding:5px 15px 10px 15px;
	text-align:left;
	width:770px;
}

#Footer {
}



/* ************************* */
/* clearfix */
.clearfix:after {
    content: "."; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden;
}
.clearfix {display: inline-block;}
/* Hides from IE-mac \*/
* html .clearfix {height: 1%;}
.clearfix {display: block;}
/* End hide from IE-mac */
