/* CSS Document */
/* 
Class Versus ID
	Class can be assigned more than once on a page, e.g., multiple links of class "mainlink"; 
	IDs are unique within a document.
*/
body {
	width:800px;
	}
	
#container {
			/*min-height:100%;*/
		}
		
#content	{
			/*min-height:100%;*/
			padding-bottom: 10px;
		}
		
#header {
	background-image: url(../images/header_logo.gif);
	background-repeat: no-repeat;
	background-position: left top;
	height:33px;
	width: 800px;
		}

#leftcol {
	/*position:absolute;
	top:73px;
	left:14px;*/
	float:left;
	margin: 10px 10px 10px 10px;
	width:40%;
	padding:10px;
	background-color:#000066;
}

#maincol {
	float:right;
	margin: 10px 10px 10px 10px;
}

#menulinks
	{
	text-align:center;
	}
		
#footer {
	/*position:absolute;
	bottom:0;*/
	clear: both;
	margin-top:10px;
	background-image: url(../images/footer_logo.gif);
	background-repeat: no-repeat;
	background-position: left bottom;
	height: 33px;
	
	width: 800px;
	color:white;
	text-align:left;
		}
	

	
a.white 
	{
		color:white;
	}

a.white:visited 
	{
		color:white;
	}
