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

<style type="text/css">
<!--
body {
	font-family: "Times New Roman", Times, serif;
}

ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	text-align: center;
}

li { /* all list items */
	float: left;
	position: relative;
	width: 112px;
	display:inline;
	text-decoration:none;
	color:#FFFFFF;
	
	
}

li ul { /* second-level lists */
	display: none;
	position: absolute;
	top: 1em;
	left: 0;
	text-decoration:none;
	color:#001a5a;
}
li ul li { /* all list items */
	float: left;
	position: relative;
	width: 112px;
	display:inline;
	background-color:#c9dcfa;
	text-align: center;
}

li>ul { /* to override top and left in browsers other than IE, which will position to the top right of the containing li, rather than bottom left */
	top: auto;
	left: auto;
}

li:hover ul, li.over ul { /* lists nested under hovered list items */
	display: block;
}
	
a.main:link   { color: #ffffff; font-size: 12px; font-style: none; font-weight: bold; text-decoration: none; background: #2b4b98; }
a.main:active   { color: #ffffff; font-size: 12px; font-style: none; font-weight: bold; text-decoration: none; background: #2b4b98; }
a.main:visited   { color: #ffffff; font-size: 12px; font-style: none; font-weight: bold; text-decoration: none; background: #2b4b98; }
a.main:hover   { color: #ffffff; font-size: 12px; font-style: none; font-weight: bold; text-decoration: none; background: #2b4b98; }

a.sub:link   { color: #001a5a; font-size: 12px; font-style: none; text-decoration: none; }
a.sub:active   { color: #001a5a; font-size: 12px; font-style: none; text-decoration: none; }
a.sub:visited   { color: #001a5a; font-size: 12px; font-style: none; text-decoration: none; }
a.sub:hover   { color: #001a5a; font-size: 12px; font-style: none; text-decoration: none; }

#content {
	clear: left;
}

</style>