﻿/* ================================================================ 
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: verdana, arial;
	font-size: 12px;
	font-weight: bold;
	width: 213px;
	height: 250px;
	background-image: url('../images/menuBg.gif');
	background-repeat: no-repeat;
	padding-top:7px;
	margin-top:8px;
	margin-left:15px;
	position:relative;
}
.menu ul li a {
	display: block;
	text-decoration: none;
	color: #ffffff;
	height: 19px;
	line-height: 19px;
	width: 194px;
	background-color: #000000;
}
.menu ul {
	padding: 0;
	margin: 0;
	list-style-type: none;
}
.menu ul li {
	float:left;
	width: 194px;
	margin: 0px;
	padding: 0px;
	margin-left:8px;
	position: relative;
	text-align: left;
	text-indent: 10px;
	border-top: 1px solid white;
	border-left: 1px solid white;
	border-right: 1px solid white;
}

.menu ul li.last{
	border-bottom:1px solid white;
}

.menu ul li ul {
	display: none;
}

.menu ul li ul li{
	margin:0px;
}
/* specific to non IE browsers */
.menu ul li:hover a {
	width: 194px;
	color: #fef802;
	background-color: #565656; /*Hover State*/
	margin-bottom:0px;
}
.menu ul li:hover ul {
	display: block;
	position: absolute;
	top: 0;
	margin-top:-1px;
	left: 194px;
	width: 194px;
}
.menu ul li:hover ul li a.hide {
	color: #ffffff;
}
.menu ul li:hover ul li:hover a.hide {
	width: 194px;
}
.menu ul li:hover ul li ul {
	display: none;
}
.menu ul li:hover ul li a {
	display: block;
	background-color: #000000;
	color: #ffffff;
	width: 194px;
	height:19px;
}
.menu ul li:hover ul li a:hover {
	background-color: #565656; /*Hover State*/
	color: #fef802;
}
.menu ul li:hover ul li:hover ul {
	display: block;
	position: absolute;
	left: 194px;
	top: 0;
	color: #ffffff;
}
.menu ul li:hover ul li:hover ul li a {
	display: block;
	background-color: #000000;
	color: #ffffff;
	width: 194px;
}
.menu ul li:hover ul li:hover ul li a:hover {
	background-color: #565656; /*Hover State*/
	color: #fef802;
	width: 194px;
}

