@charset "utf-8";
html,body {
	margin:0;
	padding:0;
	height:100%;
	font-family:arial,sans-serif;
	font-size:small;
	color: black;
	background-color: #003e77;  /* Png color seems to be #31418B */
	background-image: url(Images/bg.gif);
	background-repeat: no-repeat;
	background-position: center top;
}

/* Standard pseudo link, visited, active, hover, and active classes
   Maintain current order - link - vis - hov - active
   Transparent backgrounds make them work with any foreground color */
a:link { color: black;  background-color: transparent; }   
a:visited { color: black;  background-color: transparent; }
a:hover { color: white; background-color: transparent; }    
a:active { color: white; background-color: transparent; }

/* Class for the Orange, main horizontal menu */
td.menuOff {
	background-color: #f46f21;
	border-right-color: black;
  	border-right-width: 2px;
	border-right-style: solid; 
   font-weight: bolder;
   font-family:arial,sans-serif;
	text-indent: 6px;
	height: 30px;
}

/* Class to change the OnMouseOver cell bgcolor to Red */
td.menuOn {
	background-color: red;
	border-right-color: black;
	border-right-width: 2px;
	border-right-style: solid;
	font-weight: bolder;
   font-family:arial,sans-serif;
	text-indent: 6px;
	height: 30px;
}

a.menu {
	font-size:medium;
	text-decoration: none;   /* Remove the underline in the URL */
}

p.title {
   font-weight: bold; 
   font-size: larger;
   padding-top: 15px;
	text-decoration: underline; 
   text-align: center; 
}

p.pad10 {
   padding-left: 10px;
   padding-right: 10px;
}

/* Give more verticle space between list items. */
li {
	padding-top: 15px;
}

input,textarea {
	background-color: #dddddd;
}

input.button:hover {
	background-color: #e0eaf8;
}


