﻿.menu {
	font-size:12px;
	font-family: Arial, sans-serif;
	padding-top:1px;text-align:left;
}

/* hack to correct IE5.5 faulty box model */
* html .menu {width:900px}
/* remove all the bullets, borders and padding from the default list styling */
.menu ul {padding:0;margin:0;list-style-type:none;}
.menu ul ul {width:155px;}
/* 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 a, .menu a:visited {display: block;
	height: 28px;
	padding:12px 30px 0px 30px;
	border-right:1px #ffffff solid;
	text-decoration: none;
	font-weight: bold;
	color: #ffffff;
}
/* a hack so that IE5.5 faulty box model is corrected */
* html .menu a, * html .menu a:visited {width:auto;float:left}

/* 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:40px;left:0; width:155px;}
/* another hack for IE5.5 */
* html .menu ul ul {top:30px;top:31px;}

/* style the second level links */
.menu ul ul a, .menu ul ul a:visited {
	color: #555555;
	height: auto;
	line-height: 1em;
	width: 155px;
	padding-bottom: 5px;
	border-top: 1px #ffffff solid;	border-left:1px #ffffff solid;
background:#B0CF57 url('../images/nav-arrow-right.gif') no-repeat left 50%;z-index:9999
}
/* yet another hack for IE5.5 */
* html .menu ul ul a, * html .menu ul ul a:visited {width:98px;}

/* style the top level hover */
.menu a:hover, .menu ul ul a:hover{color:#ffffff; background-color:#B0CF57;}
.menu :hover > a, .menu ul ul :hover > a {
	color: #EAFFCC;	background-color:#B0CF57
}

/* 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; }ul.dropdown *.dir {
 background-image: url(../images/nav-arrow-down.gif);
 background-position: 98% 50%;
 background-repeat: no-repeat;
}

