@charset "utf-8";

html, body  {
	background:#3A5A3A;
	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 */
	height:100%;

}

h3 {
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:12px;
	margin-left:5px;
	border-left:10px solid #bb8877;
	line-height:12px;
	padding-top:0;
	padding-left:5px;
	color:#992222;
}

h2 {
	color:#332222;
	font-size:18px;
	line-height:8px;
	padding-top:8px;
	border-top:1px solid #aa7744;
	font-family:Verdana, Arial, Helvetica, sans-serif;

}

h1 {
	font-family:Verdana, Arial, Helvetica, sans-serif;
	color:#332222;
	font-size:24px;
	line-height:12px;
	padding-top:8px;
	border-left:10px 
}

.oneColElsCtrHdr #mainContent p{
	color: #222211;
	font: 14px Verdana, Arial, Helvetica, sans-serif;
	margin-left: 20px;
}

.minibox{
	width:400px;
	position:relative;
	float:none;
	padding:6px;
	border:1px solid #bb8877;
	background-color:#eeddbb;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:12px;
}

.minibox ul{
	position:static;
	float:none;
	margin-left:0px;
	padding-left:20px;
}


/*=====================NAVIGATION=========================*/


#buttonrow {
	background:url(images/bg_nav.jpg) repeat-x #89bb89;
	padding-left:50px;
	margin-bottom:20px;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:12px;
	height:40px;

}


#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
}

#nav a {
	display: block;
	text-decoration:none;
	font-weight:bold;
	color:#992222;
}



#nav li { /* all list items */
	float: left;
	width: 12em; /* width needed or else Opera goes nuts */
	margin-left:-40px;

}

#nav li ul a {
	padding-left:0.5em;
	background: #eeddbb;
	border-bottom:1px solid #eeddbb;
	border-top:1px solid #eeddbb;
}

#nav li ul a:hover {
	text-decoration:none;
	background:#ffffcc;
	border-bottom:1px solid #dd9955;
	border-top:1px solid #dd9955;
}

#nav li ul { /* second-level lists */
	position: absolute;
	font-weight:normal;
	background: #f1e5d5;
	width: 12em;
	border:1px solid #bb8877;
	line-height:24px;
	margin-left:0px;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}

#nav li ul a {
	font-weight:normal;
	margin-left:40px;
	width:11.5em;
	
}

#nav li:hover ul, #nav li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}
/*=================================================================*/

/* Tips for Elastic layouts 
1. Since the elastic layouts overall sizing is based on the user's default fonts size, they are more unpredictable. Used correctly, they are also more accessible for those that need larger fonts size since the line length remains proportionate.
2. Sizing of divs in this layout are based on the 100% font size in the body element. If you decrease the text size overall by using a font-size: 80% on the body element or the #container, remember that the entire layout will downsize proportionately. You may want to increase the widths of the various divs to compensate for this.
3. If font sizing is changed in differing amounts on each div instead of on the overall design (ie: #sidebar1 is given a 70% font size and #mainContent is given an 85% font size), this will proportionately change each of the divs overall size. You may want to adjust based on your final font sizing.
*/
.oneColElsCtrHdr #container {
	width: 95%;  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
	background: #FFFFFF;
	height:auto;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	padding-bottom:0;
	border-left:4px solid #283E28;
	border-right:4px solid #283E28;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.oneColElsCtrHdr #header { 
	background: #ffffff; 
	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. */
} 
.oneColElsCtrHdr #mainContent {
	padding: 0 20px 60px 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
	height:100%;
	margin-bottom:0;
}


.oneColElsCtrHdr .backupnav {
	float:left;
	font: 14px tahoma;
	line-height:20px;
}


.oneColElsCtrHdr .backupnav li a{
	margin-left:15px;
	text-decoration:underline;
	color:#33f;
}


.oneColElsCtrHdr .backupnav li a:hover{
	margin-left:15px;
	text-decoration:none;
	color:#69f;
}


.oneColElsCtrHdr .backupnav li a:active{
	margin-left:15px;
	text-decoration:none;
	color:#c33;
}


.oneColElsCtrHdr .backupnav li a:visited{
	margin-left:15px;
	text-decoration:underline;
	color:#80c;
}


.oneColElsCtrHdr .backupnav li a:visited:hover{
	margin-left:15px;
	text-decoration:none;
	color:#d11;
}



.oneColElsCtrHdr #clear{
	clear:both;
}


.oneColElsCtrHdr #footer { 
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#DDDDDD;
} 
.oneColElsCtrHdr #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 */
}
