/* Required to auto center IE outside/inside containers */
body {text-align: center;
background-color:  #3C52B4;
}

/* portion that extends to the side of the browsers */
#containerborder{
width: 100% auto;
height: 100% auto;
}

/* visible part of the web page */
#container{
width: 780px;
margin: 10px auto;
background-color: #ddd;
color: #333;
border: 1px solid black;
line-height: 130%;
font-family: arial, sans-serif;
font-size: 14px;
}

/* top line on the printed page that replaces the logo
   hidden during screen view */
#printheader{
display: none;
}

/* location for logo
   hidden during printing */
#top{
padding-left: 5px;
padding-right: 5px;
padding-top: .5em;
padding-bottom: 5px;
background-color: #ddd;
border-bottom: 1px solid gray;
}

/* left navigation bar */
#leftnav{
float: left;
width: 110px;
margin: 0;
padding: 1em;
font-weight: bold;
text-align: left;
font-family: arial, sans-serif;
font-size: 12px;
color: #3C52B4;
}
#leftnav p { margin: 0 0 1em 0; }
#leftnav a{text-decoration: none;
	color: #3C52B4;}
#leftnav a:hover{color: #007400;
	font-style: italic;
	font-effect: engraved;}
	
/* actual page content */
#content{
margin-left: 120px;
border-left: 1px solid gray;
padding: 1em;
background-color: #fff;
text-align: left;
}
#content h2 { margin: 0 0 .5em 0; }

/* bottom portion of page - footer */
#footer{
clear: both;
margin: 0;
padding: .5em;
color: #333;
background-color: #ddd;
border-top: 1px solid gray;
text-align: left;
}





