@charset "UTF-8";

* {
font-family: Georgia, "Times New Roman", Times, serif;

}

body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background-color: rgb(235, 240, 235);
	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 */
}

#container { 
	width: 900px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: white;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 0;
	text-align: left; /* this overrides the text-align: center on the body element. */
	border-left: 1px solid rgb(10, 75, 130);
	border-right: 1px solid rgb(10, 75, 130);
	border-bottom: 1px solid rgb(10, 75, 130);
}



#nav {
	float: left; /* since this element is floated, a width must be given */
	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-color: rgb(220, 245, 230); /* the background color will be displayed for the length of the content in the column, but no further */
	border-bottom: 6px solid rgb(220, 245, 245); /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px;
	
}

.navlink {
font-family:Arial, Helvetica, sans-serif;
font-weight: normal;
font-size: 12px;
line-height: 14px;
color: rgb(10, 75, 130);
text-decoration: none;
display: block;
padding-top: 0px;
padding-bottom: 3px;
padding-left: 6px;
padding-right: 4px;
text-align: left;


}

.navlink:hover {

color: rgb(0, 50, 80);
text-decoration: underline;

}

.navimage {
margin-top: 4px;
margin-bottom: 2px;
}

.navsubhead {
font-weight: bold;
font-style: normal;
font-size: 12px;
line-height: 14px;
background-color: rgb(50, 90, 120);
color: rgb(235, 250, 245);
margin-bottom: 3px;
padding-top: 2px;
padding-bottom: 2px;
padding-left: 5px;
padding-right: 4px;
text-align: left;
}



.cleartopmargin {
margin-top: 0;
}






#Main_section { 
	margin-left: 180px;  /* makes room for nav*/
	padding: 0;
	background: transparent;
} 



#Main_content { 
	margin: 0;
	padding: 20px;
	background: transparent;
	border-top: 1px solid rgb(10, 75, 130);


} 


.leftcolumn {

padding-right: 8px;
vertical-align:top;
width: 50%;

}

.rightcolumn {

padding-left: 8px;
vertical-align:top;

}

.sidebar {
	border: 1px solid rgb(39, 79, 101); 
	padding: 12px;
	}
	
.readinglist	{
	margin: 0;
	margin-left: 10px;
	font-style:italic;
	}
	
.caption {
	padding-top: 8px;
	line-height: 20px;
	font-size: 14px;
	font-style:italic;
	width: 320px;
	}	

.captionreference {
	padding-top: 4px;
	font-size: 12px;
	font-style:italic;
	text-align:right;
	width: 320px;
	}
	

a	{
	color: rgb(10, 75, 130);
	}

a:hover	{
	color: rgb(30, 0, 250);
	}

.psuedolink	{
	color: rgb(10, 75, 130);
	text-decoration: underline;
	cursor: pointer;
	}

.psuedolink:hover	{
	color: rgb(30, 0, 250);
	text-decoration: underline;
	}



.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;
}



h1 {

	margin-top: 0px;
	margin-bottom: 8px;
	color: rgb(10, 75, 130);
	font-weight: bold;
	font-style: italic;
	font-size: 24px;

}


h2 {

	margin-top: 3px;
	margin-bottom: 8px;
	color: rgb(10, 75, 130);
	font-weight: bold;
	font-style: italic;
	font-size: 18px;

}

h3 {
	margin: 0;
	color: rgb(0, 0, 0);
	font-size: 16px;
	font-weight: bold;
	font-style: normal;

}

h4 {
	margin: 0;
	margin-top: 8px;
	color: rgb(0, 0, 0);
	font-size: 14px;
	font-weight: bold;
	font-style: normal;
}


p {

	margin: 0;
	margin-bottom: 8px;
	color: rgb(0, 10, 20);
	font-size: 14px;
	line-height: 20px;
}

li {
	margin-bottom: 6px;
	font-size: 14px;
	}

ul {
	margin-bottom: 8px;
	}
	


	