﻿/* ================================================================ 
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/flyout2.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.
=================================================================== */
/* remove all the bullets, borders and padding from the default list styling */
.menuv ul {
	padding: 0;
	margin: 0;
	list-style-type: none;
	width: 175px;
}
/* hack for IE5.5 */
* html .menuv ul {
	margin-left: -16px;
	ma\rgin-left: 0;
}
/* position relative so that you can position the sub levels */
.menuv li {
	position: relative;
	background-color: #ebdbb8;
	height: 24px;
}
/* get rid of the table */
.menuv table {
	font: normal normal normal 12px Arial, Helvetica, sans-serif;
	position: absolute;
	border-collapse: collapse;
	top: 0;
	left: 0;
	z-index: 100;
}
/* style the links */
.menuv a, .menuv a:visited {
	font: normal normal normal 12px Arial, Helvetica, sans-serif;
	color: #005d86;
	display: block;
	text-decoration: none;
	height: 22px;
	line-height: 22px;
	width: 175px;
	text-indent: 10px;
	border-top: 1px #F3EBD8 solid;
	border-bottom: 1px #E1C893 solid;
}
/* hack for IE5.5 */
* html .menuv a, * html .menuv a:visited {
	color: #005d86;
	background-color: #ebdbb8;
	width: 175px;
	w\idth: 174px;
}
/* style the link hover */
* html .menuv a:hover {
	color: #005d86;
	display: block;
	text-decoration: none;
	height: 22px;
	line-height: 22px;
	width: 175px;
	background-color: #ffffcc;
	border-top: 1px #F3EBD8 solid;
	border-bottom: 1px #E1C893 solid;
}
.menuv :hover > a {
	color: #005d86;
	display: block;
	text-decoration: none;
	height: 22px;
	line-height: 22px;
	width: 175px;
	background-color: #ffffcc;
	border-top: 1px #F3EBD8 solid;
	border-bottom: 1px #E1C893 solid;
}
/* hide the sub levels and give them a positon absolute so that they take up no room */
.menuv ul ul {
	visibility: hidden;
	position: absolute;
	top: 0;
	left: 175px;
}
/* make the second level visible when hover on first level list OR link */
.menuv ul li:hover ul, .menuv ul a:hover ul {
	visibility: visible;
	border: 1px #B4BB8C solid;
}
/* keep the third level hidden when you hover on first level list OR link */
.menuv ul :hover ul ul {
	visibility: hidden;
}
/* keep the fourth level hidden when you hover on second level list OR link */
.menuv ul :hover ul :hover ul ul {
	visibility: hidden;
}
/* make the third level visible when you hover over second level list OR link */
.menuv ul :hover ul :hover ul {
	visibility: visible;
}
/* make the fourth level visible when you hover over third level list OR link */
.menuv ul :hover ul :hover ul :hover ul {
	visibility: visible;
}