@charset "utf-8";
body  {
	font: 100% Arial, Helvetica, sans-serif;
	margin: 0;
	padding: 0;
	text-align: center;
	color: #000000;
	background: #1b4277;
}
#container {
	width: 48.75em;
	background: #FFFFFF;
	margin: 10px auto 0;
	text-align: left;
	border-top: none;
	border-right: none;
	border-bottom: none;
	border-left: none;
} 
#header {
	padding: 0;
	background: #1B4277;
	height: 115px;
} 
#header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 4px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	color: #FFFFFF;
	font: italic bold 1em Arial, Helvetica, sans-serif;
	text-align: center;
}
#sidebar1 {
	float: left;
	width: 180px; /* 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 */
	background: #FFFFFF;
	padding: 15px 10px 15px 20px;
}
#sidebar1 p {
	font-size: .8em;
}

#navcontainer ul
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: .9em;
	font-weight: bold;
}

#navcontainer li {
	margin-right: 0;
	margin-bottom: 0.4em;
	margin-left: 0;
}

#navcontainer a
{
	display: block;
	color: #FFF;
	width: 10em;
	padding: 0.3em 0.8em;
	text-decoration: none;
	background: #1b4277;
}

#navcontainer a:hover
{
	color: #1b4277;
	background: #e7e5e5;
}

#mainContent {
	font-size: 0.8em;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 210px;
	padding: 15px;
	border-left: 0.1em solid #999;
	line-height: 1.4em;
} 
#mainContent a {
	font-weight: bold;
}
#mainContent a:link, #mainContent a:visited {
	color: #1b4277;
	text-decoration: none;
}
#mainContent a:hover, #mainContent a:active {
	color: #666666;
	text-decoration: underline;
}


#mainContent  h1  {
	font-size: 1.4em;
}
#mainContent h2 {
	font-size: 1.1em;
	background: #e7e5e5;
	color: #000000;
	padding: .5em;
}


#footer {
	padding: 0 10px 0 20px;
	background:#FFFFFF;
	border-top: 0.5em solid #1b4277;
} 
#footer p {
	margin: 0; 
	padding: 10px 0; 
	text-align: center;
	font-size: .75em;
}
#footer a, a:link, #footer a:visited {
	text-decoration:none;
	color:#1b4277;
}

#footer a:hover, #footer a:active {
	color: #666666;
	text-decoration:underline;
}
.fltrt { 
	float: right;
	margin-left: 8px;
}
.fltlft { 
	float: left;
	margin-right: 8px;
}
.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;
}
.style1 {font-size: .8}

