/* CSS Document */


.nav {
	width:650px;
	height:25px;
	position:absolute;
	z-index:400;
	border-right:1px solid #FF6699;
	font-family:arial, sans-serif;
	top: 111px;
	right: 0px;
}
/* hack to correct IE5.5 faulty box model */
* html .nav {width:650px; w\idth:650px;}
/* remove all the bullets, borders and padding from the default list styling */
.nav ul {padding:0;margin:0;list-style-type:none;}
.nav ul ul {width:149px;}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown.nav positon */
.nav li {
	float:right;
	width:149px;
	position:relative;
	margin-right: 0px;
}
/* style the links for the top level */
.nav a, .nav a:visited {
	display:block;
	font-size:12px;
	text-decoration:none;
	color:#CC3333;
	width:138px;
	height:25px;
	border:1px solid #FF6699;
	border-width:1px 0 1px 1px;
	background:#FFCC99;
	padding-left:10px;
	line-height:29px;
	font-weight:bold;
	text-transform: uppercase;
}
/* a hack so that IE5.5 faulty box model is corrected */
* html .nav a, * html .nav a:visited {width:149px; w\idth:138px;}

/* style the second level background */
.nav ul ul a.drop, .nav ul ul a.drop:visited {background:#FFCC99 200px center;}
/* style the second level hover */
.nav ul ul a.drop:hover{background:#FFF 200px center;}
.nav ul ul :hover > a.drop {background:#FFCC99  200px center;}
/* style the third level background */
.nav ul ul ul a, .nav ul ul ul a:visited {background:#e2dfa8;}
/* style the third level hover */
.nav ul ul ul a:hover {background:#FFF;}


/* hide the sub levels and give them a positon absolute so that they take up no room */
.nav ul ul {
	visibility:hidden;
	position:absolute;
	height:0;
	top:25px;
	width:149px;
	border-top:1px solid ##FF6699;
	right: 0px;
}
/* another hack for IE5.5 */
* html .nav ul ul {top:30px;t\op:31px;}

/* position the third level flyout.nav */
.nav ul ul ul{left:149px; top:-1px; width:149px;}

/* position the third level flyout.nav for a left flyout */
.nav ul ul ul.left {left:-149px;}

/* style the table so that it takes no ppart in the layout - required for IE to work */
.nav table {position:absolute; top:0; left:0; border-collapse:collapse;;}

/* style the second level links */
.nav ul ul a, .nav ul ul a:visited {
	background:#FFCC99;
	color:#CC3333;
	height:auto;
	line-height:1em;
	padding:5px 10px;
	width:200px;
	border-width:0 1px 1px 1px;
	text-transform: uppercase;
}
/* yet another hack for IE5.5 */
* html .nav ul ul a, * html .nav ul ul a:visited {width:150px;w\idth:128px;}

/* style the top level hover */
.nav a:hover, .nav ul ul a:hover{color:#CC3333; background:#FFF;}
.nav :hover > a, .nav ul ul :hover > a {color:#CC3333; background:#fff;}

/* make the second level visible when hover on first level list OR link */
.nav ul li:hover ul,
.nav ul a:hover ul{visibility:visible; }
/* keep the third level hidden when you hover on first level list OR link */
.nav ul :hover ul ul{visibility:hidden;}
/* make the third level visible when you hover over second level list OR link */
.nav ul :hover ul :hover ul{ visibility:visible;}
