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

body {
margin:0px;
background-repeat:repeat-x;
background-position:top;
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size:12px;
line-height:18px;
color:#333333;
}

p {
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size:12px;
line-height:18px;
color:#333333;
}


a:link {
font-size:12px;
color:#FF9900;
text-decoration:none;
font-family:Verdana, Arial, Helvetica, sans-serif;
line-height:18px;
}

a:visited {
font-size:12px;
color:#FF9900;
text-decoration:none;
font-family:Verdana, Arial, Helvetica, sans-serif;
line-height:18px;
}

a:hover {
font-size:12px;
color:#1B3E98;
text-decoration:none;
font-family:Verdana, Arial, Helvetica, sans-serif;
line-height:18px;
}

a:active {
font-size:12px;
color:#FF9900;
text-decoration:none;
font-family:Verdana, Arial, Helvetica, sans-serif;
line-height:18px;
}

a.blue_movement:link {
color:#000066;
}

a.blue_movement:visited {
color:#000066;
}

a.blue_movement:hover {
color:#FF9900;
}

a.blue_movement:active {
color:#000066;
}

.orangeheader {
font-family:Verdana, Arial, Helvetica, sans-serif;
font-weight:bold;
font-size:16px;
color:#FFFFFF;
text-transform:uppercase;
}

.blueheader {
font-family:'Tahoma', Verdana, Arial, Helvetica, sans-serif;
font-weight:bold;
font-size:24px;
color:#1B3E98;
text-transform:uppercase;
}

.alignleft {
float:left;
}

.alignright{
float:right;
}

/* MENU */ 



.menu {
	width:1050px; 
	height:30px; 
	position:relative; 
	z-index:100;
	border-right:0; 
	font-family:Verdana, Arial, Helvetica, sans-serif;
	margin-left:0px;
}

/* hack to correct IE5.5 faulty box model */
* html .menu {
	width:1050px; 
	w\idth:1050px;
}

/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
	padding:0;
	margin:0;
	list-style-type:none;
}

.menu ul ul {
	width:175px;
}

/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu li {
	float:left;
	position:relative;
}

/* style the links for the top level */
.menu a, .menu a:visited {
	display:block;
	font-size:12px;
	text-decoration:none; 
	font-weight:bold;
	color:#fff; 
	height:26px;  
	padding: 3px 25px 3px 26px; 
	line-height:26px; 
	float:left;
	text-align:left;
	text-transform:uppercase;
}

/* a hack so that IE5.5 faulty box model is corrected 
* html .menu a, * html .menu a:visited {
	width:149px; 
	w\idth:138px;
}
*/



/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {
	visibility:hidden;
	position:absolute;
	height:0;
	top:31px;
	left:0; 
	width:175px;
}

/* another hack for IE5.5 */
* html .menu ul ul {
	top:29px;	
	t\op:30px;
}


/* style the table so that it takes no part in the layout - required for IE to work */
.menu table {
	position:absolute; 
	top:0; 
	left:0; 
	border-collapse:collapse;
	text-align:left;
}

/* style the second level links */
.menu ul ul a, .menu ul ul a:visited {
	background:#79A3C7; 
	color:#003366; 
	height:auto; 
	line-height:2em; 
	padding:3px 10px; 
	width:200px;
	border-width:0;
	border-top:1px solid #003366;
	text-decoration:none;
	font-weight:normal;
	text-transform:uppercase;
	font-size:11px;
}

/* yet another hack for IE5.5 
* html .menu ul ul a, * html .menu ul ul a:visited {
	width:150px;
	w\idth:128px;
}
*/

/* style the top level hover */
.menu a:hover {
	color:#003366;
	text-decoration:none;
}

.menu :hover > a {
	color:#003366; 
	text-decoration:none;
}

/* style the second level hover */

.menu ul ul a:hover {
    color:#FFFFFF;
}

.menu ul ul :hover > a {
	color:#FFFFFF; 
}

/* make the second level visible when hover on first level list OR link */
.menu ul li:hover ul,
.menu ul a:hover ul{
	visibility:visible; 
}

/* keep the third level hidden when you hover on first level list OR link */
.menu ul :hover ul ul{
	visibility:hidden;
}

/* make the third level visible when you hover over second level list OR link */
.menu ul :hover ul :hover ul{
	 visibility:visible;
}

/* END MENU */