@charset "utf-8";
body  {
	font: 90% Verdana, Arial, Helvetica, sans-serif;
	background: #666666;
	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: #000000;
}

.twoColElsRtHdr #container { 
	width: 800px;  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
	background: #669966;
	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. */
} 
.twoColElsRtHdr #header {
	background-color: #669966;
	padding: 5px;
} 


.twoColElsRtHdr #sidebar1 {
	float: right;
	width: 210px; /* top and bottom padding create visual space within this div */
	background-color: #669966;
	padding-top: 15px;
	padding-right: 5px;
	padding-bottom: 15px;
	padding-left: 0;
	
}

.twoColElsRtHdr #mainContent {
	background-color: #ccc;
	width:570px;
	margin-top: 40px;
	margin-right: 2em;
	margin-bottom: 0;
	margin-left: 2px;
	padding-bottom: 5px;
	padding-left: 5px;
	padding-right: 5px;
	text-align:left;
	border-right-width: 1px;
	border-right-style: double;
	border-right-color: #000;
} 

.twoColElsRtHdr #mainContent h1 {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 120%;
	font-weight: 800;
}
.twoColElsRtHdr #footer {
	padding: 0 10px;
	background-color: #639A63;
	
} 
.twoColElsRtHdr #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}


.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;
}

#nav {
	float:left;
	width:548px;
	height:20px;
	background-color:#99FF99;
	padding: 1px;
	list-style: none;
	margin-top: 5px;
	margin-right: 0;
	margin-bottom: 5px;
	margin-left: 0;
}
#nav li {
	float: left;
	font-family: "Lucida Grande", sans-serif;
	padding: 0px;
	font-size: 110%;
	font-weight:700;
	list-style-type: none;
}
#nav a {
	float:left;
	width: 60px;
	font-size: 70%;
	display:block;
	margin:0;
	padding: 4px 8px;
	color:#333;
	text-decoration:none;
	border:1px solid #9b8748;
}

#nav a:hover {
	background:#FFF;
	font-size: 70%;
}
