@charset "utf-8";
/* CSS Document */

.menu {width:780px; height:32px; font-size:0.85em; position:relative; z-index:100;border:none;}
/* hack to correct IE5.5 faulty box model */
* html .menu {width:780px; w\idth:780px;}
/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
	padding:0;
	margin:0;
	list-style-type:none;
	text-align: center;
}
.menu ul ul {width:149px;}
/* 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 #eligibility a, .menu #eligibility a:visited{width:106px;}
.menu #examinfo a, .menu #examinfo a:visited{width:157px;}
.menu #app a, .menu #app a:visited{width:67px;}
.menu #testing a, .menu #testing a:visited{width:149px;}
.menu #abmm a, .menu #abmm a:visited{width:65px;}
.menu #abmli a, .menu #abmli a:visited{width:70px;}
.menu #nrm a, .menu #nrm a:visited{width:58px;}
.menu #home a, .menu #home a:visited{width:63px;}
.menu #faq a, .menu #home a:visited{width:45px;}


/* style the second level links */
.menu #eligibility ul a, .menu #eligibility ul a:visited{width:106px;}
.menu #examinfo ul a, .menu #examinfo ul a:visited{width:157px;}
.menu #app ul a, .menu #app ul a:visited{width:112px;}
.menu #testing ul a, .menu #testing ul a:visited{width:149px;}
.menu #abmm ul a, .menu #abmm ul a:visited{width:149px;}
.menu #abmli ul a, .menu #abmli ul a:visited{width:149px;}
.menu #nrm ul a, .menu #nrm ul a:visited{width:149px;}
.menu #home ul a, .menu #home ul a:visited{width:149px;}
.menu #faq ul a, .menu #faq ul a:visited{width:120px;}


.menu a, .menu a:visited {
	display:block;
	font-size:11px;
	text-decoration:none;
color: #CC0000;
	width:138px;
	height:35px;
	border:none;
	border-width:1px 0 1px 1px;
	line-height:35px;
	background-color: #FFFFFF;
	font-weight: bold;
}
/* a hack so that IE5.5 faulty box model is corrected */
* html .menu a, * html .menu a:visited {width:149px; w\idth:138px;}

/* style the second level background */
.menu ul ul a.drop, .menu ul ul a.drop:visited {
	background-color: #999999;
	color: #FFFFFF;
}
/* style the second level hover */
.menu ul ul a.drop:hover{background:#c9ba65;}
.menu ul ul :hover > a.drop {background:#c9ba65;}
/* style the third level background */
.menu ul ul ul a, .menu ul ul ul a:visited {background:#e2dfa8;}
/* style the third level hover */
.menu ul ul ul a:hover {background:#b2ab9b;}


/* 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:35px;left:0; width:149px;border:none;}
/* another hack for IE5.5 */
* html .menu ul ul {top:35px;t\op:35px;}

/* position the third level flyout menu */
.menu ul ul ul{left:149px; top:-1px; width:149px;}

/* position the third level flyout menu for a left flyout */
.menu ul ul ul.left {left:-149px;}

/* 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:#FFFFFF;
	height:20px;
	line-height:20px;
	width:128px;
	border-width:0 1px 1px 1px;
	vertical-align: middle;
	background-color: #999999;
	padding-top: 5px;
	padding-bottom: 5px;
}
/* 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: #000000;
	text-decoration:none;
}
.menu :hover > a, .menu ul ul :hover > a {
	color:#fff;
	background-color: #000000;
	text-decoration:none;
}

/* 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;}

