@charset "utf-8";
/* CSS Document */


body  {
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #222;
}
#container { 
	width:900px;  /* this will create a container 80% of the browser width */
	margin: 0 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. */
		font-family:Verdana, Geneva, sans-serif;
	font-size:11px;
} 
#header { 
color:#999;
padding: 10px 10px 5px 190px;  /* 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. */
} 
 


#menu {
	float: left; /* this element must precede in the source order any element you would like it be positioned next to */
	width: 120px; /* since this element is floated, a width must be given */
	padding: 30px 20px 5px 25px; /* top and bottom padding create visual space within this div  */
	font:11px Verdana, Arial, Helvetica, sans-serif;
	text-align:right;
	line-height:18px;
	background-image:url(../images/menu-bkgrd.gif);
	height:800px;
	margin:0 10px 0 0;
}
		
		a:link {
	color: #09C;
	text-decoration: none;
	padding:3px 2px;
}
a:visited {
	text-decoration: none;
	color: #06C;
	padding:3px 2px;
}
a:hover {
	text-decoration: none;
	background-color:#09c;
	color: #FFF;
	padding:3px 2px;
}
a:active {
	text-decoration: none;
	color: #000;
	padding:3px 2px;
}
 

