@charset "utf-8";

.menu-zone {
	font-size:12px;
	width:960px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 10px;
	margin-left: auto;
	font-family: Arial, Helvetica, sans-serif;
	height: 36px;
	line-height: 36px;
	color: #FFF;
	background-image: url(themes/bg-menu.png);
	background-repeat: no-repeat;
	background-position: top center;
}

.menu {
	font-size:12px;
	width:960px;
	font-family: Arial, Helvetica, sans-serif;
	height: 36px;
	line-height:36px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 10px;
	z-index: 99998 !important;
	position: relative;
}

/* remove all the bullets, borders and padding from the default list styling */

.menu ul {
	padding:0;
	margin:0;
	list-style-type:none;
	height:36px;
	background:transparent;
}

/* style the sub-level lists */

.menu ul ul {
	width: auto;
}

/* float the top list items to make it horizontal and a relative positon so that you can control the dropdown menu positon */

.menu ul li {
	float:left;
	height:36px;
	line-height:36px;
	display:block;
}

/* style the sub level list items */

.menu ul ul li {
	display:block;
	width:auto;
	height:auto;
	line-height:36px;
}

/* style the links for the top level */

.menu a, .menu a:visited {
	display:block;
	float:left;
	height:100%;
	width:auto;
	font-size:12px;
	text-decoration:none;
	color:#FFF;
	font-weight:bold;
	padding-top: 0px;
	padding-right: 25px;
	padding-bottom: 0px;
	padding-left: 25px;
}

.menu ul li a:hover {
	color:#FF0;	
}

/* hack IE5.x to get the correct the faulty box model and get the width right */

* html .menu a, * html .menu a:visited { width:11em; width:7em; }



/* style the sub level links */

.menu ul ul a, .menu ul ul a:visited {
	display:block;
	color:#FFFFFF;
	width:10em;
	height:100%;
	line-height:14px;
	background-color: #01579a;
	padding-top: 5px;
	padding-right: 10px;
	padding-bottom: 5px;
	padding-left: 10px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #FFF;
}

* html .menu ul ul a, * html .menu ul ul a:visited  { width:16em; width:14em; }

.menu ul ul a:hover {
	color:#FF0;	
}

/* style the table so that it takes no part in the layout - required for IE to work */

.menu table {
	border-collapse:collapse;
	padding:0;
	margin:-1px;
	width:0;
	height:0;
	font-size:14px;
	z-index:1;
}

/* style the third level background */

.menu ul ul ul a, .menu ul ul ul a:visited {
	color: #FFF;
}



/* style the fourth level background */

.menu ul ul ul ul a, .menu ul ul ul ul a:visited {

	color: #FFF;

}



/* style the sub level 1 background */

.menu ul :hover a.sub1 {

	background-image: url(themes/nav/MenuBarRight.gif);

	background-repeat: no-repeat;

	background-position: 98% center;

}



/* style the sub level 2 background */

.menu ul ul :hover a.sub2 {

	background-image: url(themes/nav/MenuBarRight.gif);

	background-repeat: no-repeat;

	background-position: 95% center;

}



/* style the level hovers */

/* first */

* html .menu a:hover {

	color:#FFFFFF;

	position:relative;

	z-index:100;

	background-image: url(themes/menu-bg-over.jpg);

	background-repeat: repeat-x;

	background-position: left top;

}

.menu li:hover {position:relative;}

.menu :hover > a {
	color:#FFFFFF;
	background-image: url(themes/menu-bg-over.jpg);
	background-repeat: repeat-x;
	background-position: left top;
}

/* second */

* html .menu ul ul a:hover{
	color:#FFF;
	position:relative;
	z-index:110;
	background-color: #494136 !important;
}

.menu ul ul li:hover {position:relative;}

.menu ul ul :hover > a {
	color:#FFF;
	background-color: #494136 !important;
}

/* third */

* html .menu ul ul ul a:hover {
	position:relative;
	z-index:120;
	background-color: #494136 !important;
	color: #FFF;
}

.menu ul ul ul :hover > a {
	background-color: #494136;
	color: #FFF;
}

/* fourth */

.menu ul ul ul ul a:hover {
	position:relative;
	z-index:130;
	color: #FFF;
	background-color: #494136 !important;
}



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

/* position the third level flyout menu */

.menu ul ul ul{
	visibility:hidden;
	position:absolute;
	height:0;
	top:0px;
	left:0px;
	width:auto;
}

/* make the second level visible when hover on first level list OR link */

.menu ul :hover ul{
	visibility:visible;
	height:auto;
	left:-1.5em;
	background-color: transparent;
	background-image: url(themes/nav/trans.gif);
	padding-top: 0px;
	padding-right: 3em;
	padding-bottom: 3em;
	padding-left: 3em;
}



/* keep the third level hidden when you hover on first level list OR link */
.menu ul :hover ul ul{visibility:hidden;}

/* keep the fourth level hidden when you hover on second level list OR link */
.menu ul :hover 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; left:105px; top:5px;}

/* make the fourth level visible when you hover over third level list OR link */
.menu ul :hover ul :hover ul :hover ul {visibility:visible;}