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

/*
color changes

*/

body  {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	background: #002147;
	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;
}
html {
  overflow: -moz-scrollbars-vertical;
}
h1, h2, h3 {
  font-family: "Times New Roman", Times, serif;
  font-style: italic;
}
h2 {
  margin: 0;
  padding: 0;
  font-size: 19px;
} 
h3 {
  margin-bottom: 0;
  padding-bottom: 0;
  font-size: 16px;
}  
li.notes {
  list-style-image: url(../images/notes.gif); 
  margin: 5px 0;
  padding: 0;
}   
.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;
}
.spaced {
  margin: 5px;
} 
.red {
  color: red;
}   
.blue {
  color: #003366;
}  
.gray {
	color: gray;
}
.img_text {
	text-align: center;
	font-size: 10px;
	margin: 10px 5px;
  }
#container {
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 10px auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	background: #d7cec2;
} 
#header {
	padding: 0;  /* 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. */
	margin: 0;
} 
#header p {
	text-align: right;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
	font-style: normal;
	margin: 0px;
	padding: 10px;
	background-color: #FFFFFF;
	color: #293e6b;
}
#header_img {
	float: left;
	text-align: center;
	width: 181px;
	background-color: #ffffff;
}
#header_text {
  float: right;
  text-align: center;
  width: 599px;
  height: 127px;
  }
#header_text a {
    text-decoration: none;
	color: black;
}	
#header_text 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: 10px 0; 
	font-family: "Times New Roman", Times, serif;
	font-style: italic;
	font-size: 24px;
	color: #FFFFFF;
}
#header_text h2 {
	font-family: Arial, Helvetica, sans-serif;
	font-style: normal;
	font-size: 14px;
	font-weight: normal;
	color: #FFFFFF;
	margin: 0 0 0px 0;
	padding: 0 0 10px 0;
}
#application {
  width: 700px;
  background-color: white;
  margin: 0 auto;
  padding: 30px 50px;
}  
#application p {
  margin: 4px 0;
  padding: 0;
}  
#application .subtext {
  margin-left: 15px;
  font-size: .8em;
  font-style: italic;
}  
.tablenav td {
	width: 119px;
	text-align: center;
	font-size: 12px;
	color: #FFFFFF;
  border-left: solid 1px #FFFFFF;
  border-top: solid 1px #FFFFFF;
}
.tablenav td a {
  display: block;
  width: 149px;
  height: 30px;
}
.tablenav td a:hover {
  color: black;
}
.tablenav td.upmw {
  border-left: none;
} 
.tablenav td.upmw a {
  background-color: #293e6b;
  width: 180px;
}
.tablenav td.upmw a:hover {
  background-color: #a9b2c4;
} 
.tablenav td.updf a {
  background-color: #6677ad;
}  
.tablenav td.updf a:hover {
  background-color: #ccd2e4;
}  
.tablenav td.upfr a {
  background-color: #8e739e;
}  
.tablenav td.upfr a:hover {
  background-color: #d9d0df;
}  
.tablenav td.uppw a {
  background-color: #669491;
}  
.tablenav td.uppw a:hover {
  background-color: #ccdbda;
}  
.tablenav td.upsmw a {
  background-color: #c06693;
}  
.tablenav td.upsmw a:hover {
  background-color: #eaccdb;
}  
/*.tablenav td.upsmw a {
  background-color: #9f896c;
}  
.tablenav td.upsmw a:hover {
  background-color: #dfd8ce;
}  */
.tablenav td a {
  color: white;
  text-decoration: none;
}

#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 170px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0;
}
#sidebar1 ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}
#sidebar1 ul li{
  font-size: 12px;
}  
#sidebar1 ul a {
	color: white;
	text-decoration: none;
	display: block;
	width: 100%;
	padding: 5px;
	border-top: solid white 1px;
}   
#sidebar1 ul a:hover {
  color: black;
}   
#sidebar1 ul a:hover.selected {
  color: black;
}   
#sidebar1 .inactive {
	color: #888888;
	display: block;
	width: 100%;
	padding: 5px;
	background-color: #cfc4b5;
	border-top: solid white 1px;
}   
#mainContent {
	margin: 0 0 0 180px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background-color: white;
	padding-left: 10px;
} 
#news {
  width: 200px;
  float: right;
  padding: 5px;
  margin: 10px;
  background-color: #d7cec2; /* color2 25% */
} 
#news h2 {
  margin: 0;
  padding: 0;
  font-style: italic;
  text-align: center;
}
#footer {
	padding: 0px;
	text-align: center;
	background-color: white;
} 
#footer h2 {
	margin-bottom: 0;
	color: white;
	margin-left: 180px;
	padding: 10px 0 0 0;
}  
#footer p {
	margin: 0 0 0 180px; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	color: white;
}
#footer img {
   margin-left: -140px;
 }  
 
</style>
