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

body  {
	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;
	font-family: Tahoma, Arial;
	background-color: #005CB0;
}

p {
	font-size: 12px;
	line-height: 16px;
	margin: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 8px;
	padding-left: 0px;
}


a:link {
	color: #003366;
}
caption {
	font-family: Tahoma, Arial;
	font-size: 13px;
	line-height: 17px;
	font-weight: bold;
	color: #005CB0;
}
a:visited {
	color: #003366;
}
a:hover {
	color: #339933;
}
a:active {
	color: #999966;
}

#container {
	width: 740px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left;
	border-right-width: 20px;
	border-left-width: 20px;
	border-top-style: none;
	border-right-style: solid;
	border-bottom-style: none;
	border-left-style: solid;
	border-right-color: #FFFFFF;
	border-left-color: #FFFFFF;
} 
#header {
	padding: 0px;  /* 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. */
	background-color: #FFFFFF;
} 

#sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 260px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px;
	background-color: #BED5EA;
}

#sidebar1 h1 {
	font-size: 22px;
	line-height: 25px;
	color: #005CB0;
	margin: 0px;
	paddding: 0 0 5px 0;
	
}
#sidebar1 p {
	font-size: 11px;
	line-height: 14px;
	color: #000000;
	margin: 0px;
	paddding: 0 0 5px 0;
}

#mainContent {
	width: 580px;
	margin-top: 10px;
	margin-right: 80px;
	margin-bottom: 0;
	margin-left: 80px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0;
	padding-left: 0px;
}

#mainContent h1 {
	font-size: 22px;
	line-height: 25px;
	margin: 0px;
	padding: 5px 0px 5px 0px;
	color: #005CB0;
	font-weight: normal;
}


#mainContent h2 {
	font-size: 19px;
	line-height: 21px;
	color: #339933;
	margin: 0px;
	padding: 5px 0px 8px 0px;
	display: block;
	font-weight: normal;
}

#mainContent h3 {
	font-size: 16px;
	line-height: 19px;
	color: #339933;
	margin: 0;
	padding: 5px 0px 5px 0px;
	display: block;
	font-weight: normal;
}

#mainContent h4 {
	font-size: 14px;
	line-height: 19px;
	color: #000;
	margin: 0;
	padding: 5px 0px 0px 0px;
	display: block;
	font-weight: normal;
}

#mainContent ul {
	margin: 0 0 0 15px;
}

#mainContent ul li {
	Font-Family: Tahoma, Arial;
	font-size: 12px;
	line-height: 16px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
}
 
#footer {
	background-color: #339933;
	margin-top: 10px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0px;
	padding-left: 10px;
	list-style-position: inside;
	list-style-type: square;
}
 
#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: 3px 0px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-weight: bold;
	text-align: center;
	font-size: 10px;
	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;
}

#menu {
	height: 25px;
	width: 740px;
	margin-top: 10px;
	margin-right: 0px;
	margin-bottom: 20px;
	margin-left: 0px;
	background-color: #005CB0;
	clear: both;
	float: left;
}

#toc {
	background-color: #EDF4FA;
	padding: 15px;
	margin-top: 20px;
	margin-right: 50px;
	margin-bottom: 12px;
	margin-left: 50px;
	clear: both;
}

#toc ul li {
	font-family: Tahoma, Arial;
	font-size: 13px;
	line-height: 17px;
	color: #000000;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 10px;
	list-style-position: outside;
	list-style-image: url(images/bullet_square.gif);
}
td {
	line-height: 15px;
	font-size: 12px;
}
th {
	font-size: 13px;
	line-height: 17px;
	color: #005CB0;
}
blockquote {
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 5px;
	padding-left: 10px;
	margin-top: 0px;
	margin-right: 15px;
	margin-bottom: 0px;
	margin-left: 15px;
}
