.menu 
{
	background: url(/images/menu_off.jpg) repeat-x; 
	font-family: arial, sans-serif; 
	width: 996px;
	position:relative;
	z-index:100;
	font-size:11px;
	height:32px;
}

.menu ul 
{
	list-style:none;
	padding:0px;
	margin:0px 0px 0px 8px;
}

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

.menu a, .menu a:visited
{
	float:left;
	display:block;
	padding:8px 25px 11px 25px;
	color:#000;
	text-decoration:none;
}

.menu ul ul a:hover
{
	background:#efefef;
	color:#000;
}

/* style the second level background */
.menu ul ul a.drop, .menu ul ul a.drop:visited 
{
	background:url(../images/arrow.gif) no-repeat right top!important;
}

/* style the second level hover */
.menu ul ul a.drop:hover
{
	background:url(../images/arrow.gif) no-repeat right center!important;
}

.menu ul ul :hover > a.drop 
{
	background:url(../images/arrow.gif) no-repeat right center!important;
}

/* style the third level background */
.menu ul ul ul a, .menu ul ul ul a:visited 
{
	background:#efefef;
	width:31em;
}

/* style the third level hover */
.menu ul ul ul a:hover 
{
	background:#efefef;
}

/* 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:32px;
	left:0;
	width:12em;
	margin:0;
}

/* position the third level flyout menu */
.menu ul ul ul
{
	left:16.5em;
	top:0px;
}

/* 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 part 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 {
	background:#efefef;
	height:auto;
	padding:10px 10px;
	width:15em;
}

/* style the top level hover */
.menu a:hover, .menu .On
{
	color:#fff;   
	background:url(/images/menu_on.jpg) repeat-x!important;
	text-decoration:none;
}

.menu ul ul a:hover 
{
	background:#999999!important;
	color:#FFFFFF!important;
}

.menu :hover > a, .menu ul ul :hover > a {
	background:#999999 url(../images/template/nav-ov.gif) repeat-x;
	color:white;
}

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