body {background-color:#F9FAFB; margin-left:auto; margin-right:auto; padding:0px; width:980px;
	font-family: Arial,Verdana; font-size:11pt;
}
td {font-family: Verdana, Trebuchet; font-size:11pt;color:midnightblue
}
th {font-family: Arial, MS Sans Serif; color:white; background-color:midnightblue; text-align:left }
ul, li {
 margin:0;
 padding:0;
}

p {margin-top:4px; padding:0px}
img {border-width:0}
u {cursor:pointer; color:steelblue}
a:link {color:steelblue}
a:visited {color:steelblue}
h4 {font-family: Verdana,Trebuchet MS; font-size:11pt; color:SteelBlue; font-weight:bold; margin-bottom:.3em}
h5 {text-align:center; font-size:105%; font-weight:bold; padding-top:5px; color:white}

.main {width:980px; margin:0px auto; border:#477287 1px solid; text-align:left; background-color:white;
	border-radius: 4px;	box-shadow: 3px 3px 4px #C0C0C0;
}
.footer {margin-top:8px; color:steelblue; font-family:"Arial Narrow", Arial; text-align:center }
.headmess {position:relative; left:48px; top:8px; color:#000033; width:280px; text-align:right; display:inline-block}
.close {width:28px; height:28px; background-color:red; color:white; float:right; margin-top:-5px;
        font-size:20px; font-weight:bold; text-align:center; border-radius:4px; padding-top:4px; cursor:pointer}

/* -- gradient --- */
 .gradientV {
    background: #FFFFFF;
    background: -moz-linear-gradient(top, #477287, #FFFFFF);
    background: -webkit-gradient(linear, left top, left bottom, from(#477287), to(#FFFFFF));
	 background-image: linear-gradient(to bottom, #477287 0%, #FFFFFF 100%);

    /* MSIE */
    filter: progid:DXImageTransform.Microsoft.Gradient(StartColorStr='#477287', EndColorStr='#FFFFFF', GradientType=0);
	height:80px;
	border-top-left-radius: 3px;  border-top-right-radius: 3px;
  }

/*--NAV ---------------------------------*/
	

#nav{
	list-style:none;
	font-weight:bold;
	margin-bottom:10px;
	/* Clear floats */
	float:left;
	width:100%;
	/* Bring the nav above everything else--uncomment if needed.
	position:relative;
	z-index:5;
	*/
}
#nav li{
	float:left;
	margin-right:2px;
	position:relative;
}
#nav a{
	display:block;
	padding-top:5px;
	padding-bottom:5px;
	padding-left:12px;
	padding-right:12px;
	color:#FFFFFF;
	background:#000033;
	text-decoration:none;
}
#nav a:hover{
	color:#FFFFFF;
	background:#993366;
	text-decoration:underline;
}

/*--- DROPDOWN ---*/
#nav ul{
	background:#fff; /* Adding a background makes the dropdown work properly in IE7+. Make this as close to your page's background as possible (i.e. white page == white background). */
	/* background:rgba(255,255,255,0);  But! Let's make the background fully transparent where we can, we don't actually want to see it if we can help it... */
	list-style:none;
	position:absolute;
	z-index:1000;
	left:-9999px; /* Hide off-screen when not needed (this is more accessible than display:none;) */
	-moz-box-shadow: 2px 3px 3px #666666;
	-webkit-box-shadow: 2px 3px 3px #666666;
	box-shadow: 2px 3px 3px #666666;
}
#nav ul li{
	padding-top:2px;
	float:none;
}
#nav ul a{
	white-space:nowrap;
}
#nav li:hover ul{ /* Display the dropdown on hover */
	left:0; /* Bring back on-screen when needed */
}
#nav li:hover a{ /* These create persistent hover states, meaning the top-most link stays 'hovered' even when your cursor has moved down the list. */
	background:#477287;   /* #006699 */
	text-decoration:underline;
}
#nav li:hover ul a{ /* The persistent hover state does however create a global style for links even before they're hovered. Here we undo these effects. */
	text-decoration:none;
}
#nav li:hover ul li a:hover{ /* Here we define the most explicit hover states--what happens when you hover each individual link. */
	background:#000033;
}