/* style the outer div to give it width */
.menu {
	font-size:12px;
}

/* remove all the bullets, borders and padding from the default list styling */
.menu ul {padding:0;margin:0;list-style-type:none; height:44px; background:transparent;}

/* style the sub-level lists */
.menu ul ul {
	width:15em;
	margin: 0px;
	z-index: 4;
}

/* 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:44px;
	line-height:44px;
	display:block;
	margin: 0px;
}

/* style the sub level list items */
.menu ul ul li {
	display:block;
	width:200px;
	height:35px;
	line-height:35px;
	text-align: left;
}

/* style the links for the top level */
.menu a {
	display:block;
	float:left;
	height:100%;
	width:112px;
	font-size:13px;
	text-decoration:none;
	color:#222;
	padding:0;
	border-left:0px;
	border-right:0px;
	font-weight: bold;
	background-image: url(../../images/merchant/184260348236f9554fe9375772ff966e/menu-normal-bg.png?20100217214242);
	background-repeat: no-repeat;
}

/* style the sub level links */
.menu ul ul a {
	display:block;
	color:#fff;
	width:200px;
	height:100%;
	line-height:35px;
	font-size: 12px;
	font-weight: normal;
	background-image: url(../../images/merchant/184260348236f9554fe9375772ff966e/sub-menu-bg.png?20100217214245);
	background-repeat: repeat;
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 0;
	padding-left: 10px;
}

/* 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:1em;
	z-index:1;
	border-top-style: 0;
	border-right-style: 0;
	border-bottom-style: 0;
	border-left-style: 0;
}


/* style the sub level 1 background */
.menu ul :hover a.sub1 {background:#447b7b;}
/* style the sub level 2 background */
.menu ul ul :hover a.sub2 {background:#447b7b;}

/* style the level hovers */
/* first */
* html .menu a:hover {
	color:#fff;
	position:relative;
	z-index:100;
	font-size: 14px;
	font-weight: bold;
	background-color: #4a4a4a;
	background-image: url(../../images/merchant/184260348236f9554fe9375772ff966e/menu-hover-bg.png?20100217214240);
	background-repeat: no-repeat;
	text-decoration: none;
}
.menu li:hover {position:relative;}
.menu :hover > a {
	color:#fff;
	font-size: 14px;
	font-weight: bold;
	background-color: #4a4a4a;
	background-image: url(../../images/merchant/184260348236f9554fe9375772ff966e/menu-hover-bg.png?20100217214240);
	background-repeat: no-repeat;
	text-decoration: none;
}
/* second */
* html .menu ul ul a:hover{
	color:#42c6f3;
	position:relative;
	z-index:110;
	font-size: 12px;
	font-weight: normal;
	background-color: #333333;
	background-image: url(../../images/merchant/184260348236f9554fe9375772ff966e/sub-menu-bg.png?20100217214245);
	background-repeat: repeat;
}
.menu ul ul li:hover {position:relative;}
.menu ul ul :hover > a {
	color:#42c6f3;
	font-size: 12px;
	font-weight: normal;
	text-decoration: none;
	background-color: #333333;
	background-image: url(../../images/merchant/184260348236f9554fe9375772ff966e/sub-menu-bg.png?20100217214245);
	background-repeat: repeat;
}


/* 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:44px;
	left:0;
	width:200px;
}
/* make the second level visible when hover on first level list OR link */
.menu ul :hover ul{
	visibility:visible;
	height:auto;
	padding:0;
	left:0;
	background-color: transparent;
}
