.menu 
{
	font-size: 11px; 
	z-index: 999;	
	position:relative;
	font-family: Verdana;
	font-size: 11px;
	background-color: #538fd9;
	height:30px;
}

.menu ul 
{
	padding:0;
	margin:0;
	list-style-type:none;
	float: right;
}

.menu li 
{
	float: left;
	position: relative;
}

/* style the links for the top level */
.menu a, .menu a:visited 
{
	display: block;
	font-size: 11px;
	text-decoration: none; 
	color: #FFF; 
	background: transparent; 
	padding-left: 1px; 
	line-height: 29px;
}

/* a hack so that IE5.5 faulty box model is corrected */
* html .menu a, * html .menu a:visited 
{
}

/* style the second level background */
.menu ul ul a.drop, .menu ul ul a.drop:visited 
{
}

/* style the second level hover */
.menu ul ul a.drop:hover
{	
}

.menu ul ul :hover > a.drop 
{
}

/* 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: 25px;
	left: 0; 
	
}

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

/* position the third level flyout menu */
.menu ul ul ul
{
	left: 149px; 
	top: -1px; 
}

/* 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; 
	border-collapse:collapse;
}

/* style the second level links */
.menu ul ul a, .menu ul ul a:visited 
{
	color: #FFF;
	background: #4f7eba; /*Background colo popup*/
	padding: 2px 10px; 
	width: 128px;
	border-width: 0px 1px 1px 1px;
	line-height: 18px;
}

/* 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, .menu ul ul a:hover
{
	color:#fff;
	background-color: #538fd9;
}
.menu :hover > a, .menu ul ul :hover > a 
{
	color: #fff;
}


.ulRight
{
	text-align: right;	
	left: -96px !important;
	width: 128px !important;
}

.ulRight .liRight
{
	width: 128px;
}

/* 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;}

