@charset "utf-8";
/* CSS Document */
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0px;
	text-align: center;/* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #wrapper selector */
	background-color: #000;
	padding-top: 10px;/* This puts space at the top of the page */
}
	
#wrapper {
	width: 850px; /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	height: 685px; /* for 600 x 800 */
	background-color: #C30;
} 

#header {
	padding: 0 10px 0 20px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. 
								If an image is used in the #header instead of text, you may want to remove the padding. */
	text-align: center;
	background-color: #390;
	height: 145px;
	font-size: 9px;
	line-height: 120%;
	font-weight: bolder;
} 
#header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. 
				If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	font-size: 28px;
}
#sidebar1 {
	width: 145px;
	height: 510px;
	padding-top: 15px;
	padding-right: 10px;
	padding-bottom: 15px;
	padding-left: 10px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 150%;
	background-color: #333;
	color: #CCC;
	float: left;
}
#mainContent {
	margin: 0px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	padding-left: 20px;
	float: left;
	background-color: #CC6;
	height: 540px;
	width: 645px;
	font-size: 14px;
	overflow: auto;
}
#wrapper #header {
	font-size: 36px;
}
a.menu:link {
	color:#CCC;
	text-decoration: none
		}
a.menu:visited {
	color:#CCC;
	text-decoration: none
		}
a.menu:hover {
	text-decoration: none;
	color: #FFF;
		}
a.menu:active {
	color:#FFF;
	text-decoration: none
		}