/* Layout Stylesheet */ 

body{
	margin: 0;
	padding:0;
	background: #CCCCCC;
	color: #333333;
	text-align: center;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 80%;
 }
 
#container { 
	width: 970px;  
	margin: 20px auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-image: url(graphics/page_bg.gif);
} 
	 
#head{
	/*margin:10px 10px 0 10px;*/
	padding: 0;
	width: 970px;
 }
 

#nav{
	width: 200px;
	background: #000000;
	color: #333333;
	padding: 10px;
	clear: both;
	float: left;
 }
 


#content{
	margin: 10px 10px 10px 220px;
	width: 700px;
	background: #ffffff;
	color: #333333;
	padding: 20px;
	position :relative;
	text-align: left;
 }

#footer { 
	padding-top: 10px;
	padding-bottom: 10px;
	text-align: center;
	font-size: 80%;
	background: #CCCCCC;
} 

#footer2 { 
	padding: 10px;
	text-align: center;
	font-size: 10px;
	background: #CCCCCC;
} 

.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}