/*************************************************************************************************
/* File: layout.css
/* Purpose: This file contains all of the base styles for the LAYOUT of the web site
/*			Any styles related to text or other content is located in base.css or additional.css
/* 			
/************************************************************************************************/

body{ 
	background-color:#2f3c3c; 
	font-family:Verdana, Arial, sans-serif;
	font-size:62.5%;
	}

#site{ 
	background-color:#fff; 
	border:2px solid #fff; 
	margin:20px auto; 
	text-align:center; 
	width:885px; 
	}


#header{ 
	background:url(../images/bkrnd_header.png) repeat-x;
	}
	

#googleBar{ height:27px; margin-bottom:2px; overflow:hidden; }
	
	#googleBar table{ float:right; margin:3px 15px; }
	#googleBar table td{ vertical-align:top; }

#shermanBar{ background-color:#d5cdb7; text-align:right; width:885px; }

#navBox{
	height:125px;
	left:0;
	position:relative;
	top:-7px;
	width:885px;
	z-index:5; 		/* to on top header image */
	}


#sidebar{
	float:left;
	margin:25px 0;
	width:250px; 
	}
	
	#sidebar img{ display:block; margin:auto; }
	

#content{
	display:inline;
	float:left;
	margin:30px 55px 40px 40px;
	width:540px;
	text-align:left;
	}

#footer{
	border-top:1px solid #e8e7e7;
	clear:both;

	}
	
	#footer table{ border-top:1px solid #fff; 	width:100%; }
	#footer table th{ background-color:#f7edd4; border-right:1px solid #fff; width:90px; }
	#footer table td{ background-color:#c3cfa4; color:#616752; text-align:center; }
	
	
	