@charset "utf-8";
/* CSS Document */
body  {
	background: #98bcbd;
	background-image: url(../images/bg-body.gif);
	background-repeat: repeat;
	color: #000;
	font: 0.9em 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: 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 */
}

#wrapper { 

	background: #FFF;
	background-image: url(../images/bg-content.gif);
	background-repeat:repeat-y;
	border: 1px solid #000000;
	margin: 5px 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. */
	width: 792px;
}

#header { 
	background: #DDD;
	background-image: url(../images/header.jpg);
}

#nav {
	background-color: #000033;
	border-bottom: 1px solid #666666;
	border-top: 1px solid #666666;
	width: 792px;
	height: 22px;
}

#container { 
	width: 792px;
	clear: both;
	background-image: url(../images/bg-content.gif);
	background-repeat:repeat-y;
} 

#sidebar {
	background: #EBEBEB; /* the background color will be displayed for the length of the content in the column, but no further */
	float: left; /* since this element is floated, a width must be given */
	font-size: 0.8em;
	padding: 0;
	width: 185px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
}

#sidebar ul
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	width: 185px;
}

#sidebar ul li
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	width: 185px;
}

#sidebar ul a
{
	display: block;

	background-color: #EEE;
	padding: 7px 7px;
	color: #333;
	text-decoration: none;
}

/* Menu items that have mouse over or focus have a blue background and white text */
#sidebar ul a:hover, #sidebar ul a:focus
{
	background-color: #cccccc;
	color: #FFF;
}

#content {
float: left;
width: 562px;
display: inline; /* crushes double margin bug in IE */
padding: 10px; /* remember that padding is the space inside the div box
and margin is the space outside the div box */
}


#footer { 
	background:#ffffff; 
	clear: both;
	font-size: 0.7em;
	margin-left: 185px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar div contains, the column space will remain. You can remove this margin if you want the #content div's text to fill the #sidebar space when the content in #sidebarw ends. */
	padding: 5px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 

#clearer {
	clear: both;
}
