/* CSS Document */
#TopMenuPublic {
	position:relative;
	/* [disabled]left:450px; placement from top of page */
	top:18px;
	margin-left:auto;
	margin-right:auto;
	color: #000;
	z-index:999;
}

/* this is the main menu font size */
#TopMenuPublic ul{
list-style:none;
font-size:12px;
margin-left:auto;
margin-right:auto;

}


#TopMenuPublic li{
display:inline;
}
#TopMenuPublic .subMenu{
display:inline;
}

#TopMenuPublic .subMenu li{
display:block;
}
/* this is the color for the main menu */
#TopMenuPublic a{
color:#666666;
text-decoration:none;
font-weight:normal;
}
/* this is the color and size for the first dropdown */
#TopMenuPublic .dropdown ul li a{
color:#555555;
font-size:11px;
}



/* 
	LEVEL ONE this is the border and padding for the main menu
*/
ul.dropdown                         { position:relative; }
ul.dropdown li                      { font-weight: bold; float: left; zoom: 1;  }
ul.dropdown a:hover		            { color: #000000; }
ul.dropdown a:active                { color: #000000; }
ul.dropdown li a                    {
	display: block;
	padding: 4px 8px;
	border-right: 1px solid #999;
	
	 								  }
ul.dropdown li:last-child a         { border-right: none; } /* Doesn't work in IE */
/*this is the of th background color for the main menu hover*/
ul.dropdown li.hover,
ul.dropdown li:hover                { background: #cedfff; color: 000000; position: relative; }
ul.dropdown li.hover a              { color: 000000; }


/* 
	LEVEL TWO this is the color background and borders for level two
*/
ul.dropdown ul 						{ width: 220px; visibility: hidden; position: absolute; top: 100%; left: 0; }
ul.dropdown ul li 					{ 
	font-weight: normal; 
	background: #efefef; 
	color: #000000; 
	border-bottom: 1px solid #fff; 
	float: none; 
	padding: 4px 8px;}
									  
                                    /* IE 6 & 7 Needs Inline Block */
ul.dropdown ul li a					{ border-right: none; width: 100%; display: inline-block; } 

/* 
	LEVEL THREE
*/
ul.dropdown ul ul 					{ left: 0; top: 100%; }
ul.dropdown li:hover > ul 			{ visibility: visible; }
