/* ================================================================ 
This copyright notice must be untouched at all times.
The original version of this stylesheet and the associated (x)html
is available at http://www.cssplay.co.uk/menus/final_drop.html
Copyright (c) 2005-2007 Stu Nicholls. All rights reserved.
This stylesheet and the associated (x)html may be modified in any 
way to fit your requirements.
=================================================================== */

.menu {
	z-index: 100;
	width: 920px;
	height: 34px;
	margin: auto;
	text-align: left;
	position: relative;
}

/* hack to correct IE5.5 faulty box model */
* html .menu {
	width: 920px;
	w\idth: 920px;
	height: 34px;
}

/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
	padding:0;
	margin:0;
	list-style-type:none;
	z-index:99999 !important;
}

.menu ul ul {
	width: 200px;
	-width:90px;
}

/* 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;
	white-space:nowrap;
	background:transparent url(/artwork/login/menu-divider.gif) right no-repeat;
}

.menu li.firstlineitem {
	float: left;
	height: 34px;
}

/* style the links for the top level */
.menu a {
	font-size:14px;
	font-weight: bold;
	font-family: Tahoma,Geneva,sans-serif;
	text-decoration:none;
	color:#FFF;
	height:34px;
	padding:0 22px 0 23px;
	line-height:30px;
        display:block;
	text-shadow:1px 1px 1px #0a3967;
}

.menu a:visited {
	font-size:14px;
	font-weight: bold;
	font-family: Tahoma,Geneva,sans-serif;
	text-decoration:none;
	color:#FFF;
	height:34px;
	padding:0 22px 0 23px;
	line-height:30px;
        display:block;
	text-shadow:1px 1px 1px #0a3967;
}

/* a hack so that IE5.5 faulty box model is corrected */
* html .menu a {
	-width:100px;
	padding:0 15px 0 15px;
}
* html .menu a:visited {
	-width:100px;
	padding:0 15px 0 15px;
}

/* style the second level background */
.menu ul ul a.drop {
	background-color:#E4C568;
}

.menu ul ul a.drop:visited {
	background-color:#E4C568;
}

/* style the second level hover */
.menu ul ul a.drop:hover {
	/* background-color:#faba2c; */
	background-color:#E4C568;
}

.menu ul ul :hover > a.drop {
	/* background-color:#faba2c; */
	background-color:#E4C568;
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {
	top: 34px;
	left: 0px;
	height: 0px;
	width: 100px;
	position: absolute;
	visibility: hidden;
}

/* another hack for IE5.5 */
* html .menu ul ul {
	top:34px;
}

/* 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 {
	background-color: #0E3240;
	border-left:2px solid #000000;
	border-right:2px solid #000000;
	border-bottom:2px solid #000000;
	color:#FFF;
	height:auto;
	line-height: 20px;
	padding:5px 10px 5px 22px;
	width:158px;
	border-width:0 1px 1px 1px;
	text-shadow:none;
}
.menu ul ul a:visited {
	background-color: #0E3240;
	border-left:2px solid #000000;
	border-right:2px solid #000000;
	border-bottom:2px solid #000000;
	color:#FFF;
	height:auto;
	line-height: 20px;
	padding:5px 10px 5px 22px;
	width:158px;
	border-width:0 1px 1px 1px;
	text-shadow:none;
}

/* yet another hack for IE5.5 */
* html .menu ul ul a {
	width:150px;
}
* html .menu ul ul a:visited {
	width:150px;
}

/* style the top level hover */
.menu a:hover {
	color:#fff;
	background-color:none;
	background:transparent url(/artwork/login/menu-hover.gif) right no-repeat;
	text-shadow: 1px 1px 1px #000000;
}
.menu :hover > a {
	color:#fff;
	background-color:none;
	background:transparent url(/artwork/login/menu-hover.gif) right no-repeat;
	text-shadow: 1px 1px 1px #000000;
}
.menu ul li:hover > a {
	color:#fff;
	background-color:none;
	background:transparent url(/artwork/login/menu-hover.gif) right no-repeat;
	text-shadow: 1px 1px 1px #000000;
}

.menu ul ul a:hover {
	color:#fff;
	background-color:none;
	background:transparent url(/artwork/login/menu-hover.gif) right no-repeat;

	/*
        background-color:#faba2c;
        background-color: green;
        background-image:none;
	*/
}

.menu ul ul :hover > a {
	color:#fff;
	background-color:none;
	background:transparent url(/artwork/login/menu-hover.gif) right no-repeat;
}

/* make the second level visible when hover on first level list OR link */
.menu ul li:hover ul {
	width: 200px;
	visibility:visible;
}
.menu ul a:hover ul {
	width: 200px;
	visibility:visible;
}
