/* CSS Document */

/*NAV-------------------------------------------------------*/


#navContainer{
	height: 30px;
	width: 892px;
	border-top: #FFFFFF 1px solid;
	clear:both;
	position: relative;
	z-index:2;
}

.menu {
	width:892px;
	/*font-size:0.85em;*/
	position:absolute;
}

/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
padding:0;
margin:0;
list-style-type:none;
}
/* 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;
white-space:nowrap;
_width: 10%;/**/
}


/* style the links for the top level */
.menu a, .menu a:visited, .menu a:link, .menu a:hover, .menu a:active {
display:block;
/*_display:inline;*/
font-size:12px;
text-decoration:none;
text-transform:uppercase;
letter-spacing: 1.5px; 
color:#FFF; 
height:30px; 
padding-left:18px; 
padding-right:18px;
line-height:29px;
}

/* style the top level hover */
.menu a:hover, .menu ul ul a:hover{
	color:#fff; 
	background:#305285;
}
.menu :hover > a, .menu ul ul :hover > a {
	color:#fff;
	background:#305285;
}

/* a hack so that IE5.5 faulty box model is corrected 
* html .menu a, * html .menu a:visited, * html .menu a:link, * html .menu a:hover, * html .menu a:active {
width:150px;
w\idth:139px;
}*/


/* style the second level background */
.menu ul ul li a, .menu ul ul li a:visited, .menu ul ul li a:hover, .menu ul ul li a:link, .menu ul ul li a:active {
color:#07306D;
	background-color: #A3B2C9;
	text-decoration: none;
	border-bottom: 1px solid #07306D;
	font-size:10px;
	height:auto;
	line-height:auto;
}
/* style the second level hover */
.menu ul ul li a:hover{
	color:#FFFFFF;
	background-color:#305285;
}
.menu ul ul li a:hover > a {
	color:#FFFFFF;
	background-color:#305285;
}
/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {
	display: none;
	position:absolute;
	height:0;
	top:30px;
	_top:29px;
	left:0;
	width:155px;
	min-width: 155px;
}
.menu ul ul li{
	white-space: normal;
	/*clear:left;*/
}
/* another hack for IE5.5 */
* html .menu ul ul {
top:29px;
t\op:30px;
}

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

/* style the second level links */
.menu ul ul a, .menu ul ul a:visited, .menu ul ul a:link, .menu ul ul a:hover, .menu ul ul a:active {
background-color:#A3B2C9; 
color:#fff; 
height:auto; 
line-height:1.2em; 
padding:5px 10px; 
width:150px;



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




/* 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; 
}
/* style sub menus within the content*/
div#contentRH ul li.selected{
	display:none;
}