/*================================================================

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-2008 Stu Nicholls. All rights reserved.

This stylesheet and the associated (x)html may be modified in any

way to fit your requirements.

===================================================================*/
.menu
{
	/*height: 40px;*/
	position: relative;
	z-index: 10;
	font-family: arial, sans-serif;
	float: left;
	/*margin-top: 134px;*/
	/*margin-left: 45px;*/
	width: 100%;
	clear: both;
	margin-top: 22px;

}
/*remove all the bullets, borders and padding from the default list styling*/
.menu UL
{
	padding: 0;
	margin: 0;
	list-style: none;
	float: right;
	right: 50%;
	position: relative;
}
.menu UL UL
{
	width: 149px;
}
.menu UL LI
{
	margin: 0 11px 0 11px;
	padding: 0;
	float: left;
	position: relative;
	left: 50%;
	top: 1px;
}
/*float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon*/
.menu LI
{
	float: left;
	width: auto;
	position: relative;
	text-align: center;
	display: block;
	left: 50%;
}
/*style the links for the top level*/
.menu A, .menu A:visited
{
	display: block;
	font-size: 13px;
	text-decoration: none;
	color: #333;
	width: auto;
	height: 27px;
	border: 1px solid #000;
	border-width: 1px;
	background: #F0EFF2;
	padding-right: 22px;
	padding-left: 22px;
	line-height: 27px;
	font-weight: bold;
	/*border-top: 4px solid #C0B6A4;*/
	float: left;
	/*[disabled]border-bottom:2px solid #CC8400;*/
	/*[disabled]border-left:1px solid #CC8400;*/
	/*[disabled]border-right:1px solid #CC8400;*/
}
/*style the second level background*/
.menu UL UL A.drop, .menu UL UL A.drop:visited
{
	background: #FEFEFE url(https://images.dwx.co/grey-arrow-l.gif) no-repeat 5px center;
}
/*style the second level hover*/
.menu UL UL A.drop:hover
{
	background: #FFFFFF url(https://images.dwx.co/blue-arrow-l.gif) no-repeat 5px center;
}
.menu UL UL :hover > A.drop
{
	background: #CFD0CC url(https://images.dwx.co/blue-arrow-l.gif) no-repeat 5px center;
}
/*style the third level background*/
.menu UL UL UL A, .menu UL UL UL A:visited
{
	background: #FEFEFE;
	border-top:1px solid #000;
}
/*style the third level hover*/
.menu UL UL UL A:hover
{
	background: #CFD0CC;
}
/*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: 28px;
	left: -10px;
	width: 0px;
	/*[disabled]border-top:1px solid #A40DEC;*/
}
/*position the third level flyout menu*/
.menu UL UL UL
{
	left: 212px;
	top: -1px;
	border-top: 1px solid #000;
	padding-top: 0px;
	width: inherit;
}
/*position the second & third level flyout menu for a left flyout*/
.menu UL UL UL.left
{
	left: 212px;
	top: -1px;
	border-top: 1px solid #000;
	padding-top: 0px;
	width: inherit;
}
.menu UL UL.left
{
	left: 212px;
	top: -1px;
	border-top: 1px solid #000;
	padding-top: 0px;
	width: inherit;
}
/*.menu ul ul a, .menu ul ul a: visited*/
.menu UL UL A, .menu UL UL A:visited
{
	background: #FEFEFE;
	height: auto;
	line-height: 1em;
	padding: 10px 10px;
	width: 200px;
	border-width: 0px 1px 1px;
	text-align: left;
}
.menu UL UL A.drop, .menu UL UL A:visited
{
	padding: 10px 10px 10px 22px;
	text-align: left;
	width: 188px;
}
/*style the top level hover*/
.menu A:hover, .menu UL UL A:hover
{
	color: #000;
	background: #CFD0CC;
}
.menu :hover > A, .menu UL UL :hover > A
{
	color: #000;
	background: #CFD0CC;
}
.menu .new .img
{
	/*[disabled]border-bottom:2px solid #EB0404;*/
	float: right;
	border: 0;
}
/*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;
}
