/* ================================================================ 
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 {
	margin: 0;
	margin-left: 5px;
	position: relative;
	width: 188px;
	background-image: none;
	
}

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

.menu ul li {
	float: left;
	margin-right: 0px;
	position: relative;
}

.menu ul li a, .menu ul li a:visited {
	background-color: #e95e10;
	background-image: none;
	border-top: solid transparent 5px;
	color: white;
	display: block;
	padding-left: 8px;
	font-size: 12px;
	font-weight: bold;
	line-height: 22px;
	text-align: left;
	text-decoration: none;
   width: 180px;
	text-transform: uppercase;
}

.menu ul li ul {
	display: none;
}

/* specific to non IE browsers */
.menu ul li:hover a {
	background: #67226d;
	color: #FFFFFF;
}

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

.menu ul li:hover ul li a {
	background: #d8c6d9;
	color: #67226d;
	display: block;
	width: 142px;
	text-align: right;
	padding-right: 8px;
}

.menu ul li:hover ul li.selected a {
	background-color: #67226d;
	color: white;
}

.menu ul li:hover ul li a.hide {
	background: #d8c6d9;
	color: white;
}

.menu ul li:hover ul li a:hover {
	background: #67226d;
	color: white;
}

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

.menu ul li:hover ul li:hover a.hide {
	width: 150px;
}

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

.menu ul li:hover ul li:hover ul li a {
	background: #67226d;
	color: white;
	display: block;
	width: 200px;
}

.menu ul li:hover ul li:hover ul li a:hover {
	background: #67226d;
	color: white;
}


