@charset "utf-8";
/* CSS Document */

body  {
	font: 100% 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 */
	color: #000000;
	background-color: #DCD8C0;
}
#container  {
	width: 780px;
	text-align: left; /* this overrides the text-align: center on the body element. */
	padding-right: 10px;
	padding-left: 10px;
	background-color: #FFFFFF;
	background-image: url(../assets/shadow.gif);
	background-repeat: repeat-y;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
} 
#header  {
	padding: 10px 10px 10px 15px;  /* 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. */
	height: 120px;
	background-color: #FFFFFF;
} 
#topbar    {
	height: 29px;
	background: #5C7BC2;
	border-top: 1px solid #1C2B4F;
	border-bottom: 1px solid #1C2B4F;
}
#topbar  #topNav  {
	float: left;
	margin-left: 17px;
	margin-top: 2px;
	margin-bottom: 0px;
}
#topbar #topNav a {
	text-decoration: none;
	font-size: 0.8em;
	color: #FFFFFF;
	font-weight: bold;
	display: inline-block;
}

#topbar   #search    {
	float: right;
	margin-right: 15px;
	margin-top: 2px;
	margin-bottom: 1px;
	width: 400px;
	text-align: right;
}

#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: 20px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	color: #23365C;
	font: bold 1.5em Georgia, "Times New Roman", Times, serif;
}
#sidebar1  {
	float: left; /* since this element is floated, a width must be given */
	width: 180px;
	margin: 0px 0px 20px;
	padding-top: 20px;
	padding-right: 0px;
	padding-bottom: 15px;
	background-color: #E4E4E4;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-right-style: solid;
	border-bottom-style: solid;
	border-right-color: #C4C4C4;
	border-bottom-color: #666666;
}
#sidebar1  h3  {
	color: #333329;
}
#sidebar1   ul    {
	margin: 0px 0px 15px;
	padding: 0px;
}
#sidebar1   li    {
	list-style: none;
}
#sidebar1   li   a    {
	display: block;
	padding-top: 4px;
	padding-bottom: 4px;
	color: #16205F;
	text-decoration: none;
	font-size: .8em;
	font-weight: bold;
	padding-left: 20px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #F3F3F3;
}
#sidebar1    li    a:hover     {
	color: #FFFFFF;
	background-color: #5C7BC2;
}
#sidebar1 li ul {
	font-size: .8em;
	margin: 0px !important;
	padding: 0px !important;
}
#mainContent  {
	font-size: .9em;
	padding-right: 20px;
	padding-bottom: 15px;
	padding-left: 20px;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 190px;
} 
#mainContent   h2    {
	color: #666666;


	font-size: 1
.em;
	border-bottom-width: 3px;
	border-bottom-style: solid;
	border-bottom-color: #5C7BC2;
	font-size: 1.2em;
}
#mainContent   h3    {
	color: #333333;
	font-size: 1.1em;
}
#mainContent   h4    {
	font-size: .9em;
}
#mainContent   li    {
	margin-bottom: 5px;
}
#mainContent th {
	background: #EAEAEA;
	text-align: left;
}


#footer  {
	border-top: 1px solid #1C2B4F;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 210px;
	background: #5C7BC2;
	border-bottom: 1px solid #1C2B4F;
} 
#footer  p  {
	margin: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size: 0.7em;
	color: #FFFFFF;
	padding-top: 5px;
	padding-right: 0px;
	padding-bottom: 10px;
	padding-left: 0px;
	font-weight: bold;
}
#footer  a  {
	color: #FFFFFF;
}
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	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;
}
