/* ================================================================ 
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/flyoutt.html
Copyright (c) 2005-2007 Stu Nicholls. All rights reserved.
This stylesheet and the assocaited (x)html may be modified in any 
way to fit your requirements.
=================================================================== */
/* common styling */
.menu {
	font-family: Arial, sans-serif; 
	width: 200px; 
	position: relative; 
	margin:0; 
	margin-top: 22px;
	font-size:11px; 
	z-index: 10000000;
}

.menu ul li a, .menu ul li a:visited { 
	background-color: #000000;
	background-image: url(../../images/menu/black.jpg);
	background-repeat: no-repeat;
	background-position: bottom left;
	color: #ffffff;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	text-transform: uppercase;
	text-decoration: none;
	
	display: block;
	padding-left: 17px; 
	width: 183px;
	height: 16px; 
}

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

.menu ul li {
	float:left; 
	position:relative;
	padding-top: 2px;
	background-color: #000000;
}

.menu ul li ul li {
	padding-top: 0;
}
.menu ul li ul {
	display: none;
}

/* specific to non IE browsers */
.menu ul li:hover a {
	color: #CE6718;
}

/* SUBMENU */
.menu ul li:hover ul {
	display: block; 
	position: absolute; 
	top:0; 
	left: 200px; /* offset from main menu */
	width: 167px;
	border-bottom: 3px solid #666666;
}

/* submenu regular */
.menu ul li:hover ul li a {
	display: block; 
	background-color: #000000; 
	/*background-image: url(../../images/menu/black.jpg);*/
	background-repeat: no-repeat;
	background-position: top left;
	color: #FFFFFF; 
	font-size: 8.5px;
	line-height: 18px;
	width: 150px;
}

/* submenu rollover */
.menu ul li:hover ul li a:hover {
	color: #CE6718;
	/*background-image: url(../../images/menu/black.jpg);*/
	background-repeat: no-repeat;
	background-position: bottom left;
}


/* submenu item with arrow */
.menu ul li:hover ul li a.hide {
	background-color: #000000; 
	background-image: url(../../images/menu/submenu_arrow_white.jpg);
	background-repeat: no-repeat;
	background-position: bottom left;
	color: #FFFFFF;
}

/* submenu item with arrow rollover */
.menu ul li:hover ul li:hover a.hide {
	color:	#CE6718;
	background-color: #000000; 
	background-image: url(../../images/menu/submenu_arrow_orange.jpg);
	background-repeat: no-repeat;
	background-position: bottom left;
}

.menu ul li:hover ul li ul {
	display: none;
}

.menu ul li:hover ul li:hover ul {
	display:block; 
	position: absolute; 
	left: 167px; 
	top: 0; 
}

/* second submenu */
.menu ul li:hover ul li:hover ul li a {
	display: block; 
	color: #FFFFFF;
	/*background-image: url(../../images/menu/black.jpg);*/
	background-repeat: no-repeat;
	background-position: bottom left;
}

.menu ul li:hover ul li:hover ul li a:hover {
	color: #CE6718;
	/*background-image: url(../../images/menu/black.jpg);*/
	background-repeat: no-repeat;
	background-position: bottom left;
}


/* ACTIVE MENUS */

/* main menu */
.active {
		background-color: #000000;
		background-image: url(../../images/menu/orange.jpg);
		background-repeat: no-repeat;
		background-position: bottom left;
		color: #ffffff;
		font-family: Arial, Helvetica, sans-serif;
		font-size: 11px;
		text-transform: uppercase;
		text-decoration: none;
		
		display: block;
		padding-left: 17px; 
		width: 183px;
		height: 16px;
}

/* active submenu */
.menu ul li.activeSub {
	background-image: none;
	background-color: #000000;
	color: #DE6D1B;
	font-size: 8.5px;
	line-height: 17px;
	padding-left: 17px;
	text-transform: uppercase;
	width: 183px;
}

/*submenu */

.menu ul li.selected a {
	background-color: #000000;
	background-image: none;
	color: #CCCCCC;
	font-size: 8.5px;
	line-height: 17px;
	width: 183px;
}

.indent, li.activeSub, li.selected{
	text-indent: 10px;
}

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

