﻿/* ================================================================ 
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: 170px;
}
/* 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: #1e1003;
	height: 23px;
	color: #FFFFFF;
	/* 3A1F05 */
}
/* 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 {
	color: #FAEAA9; 
	display: block;
	text-decoration: none;
	height: 22px;
	line-height: 22px;
	width: 170px;
	text-indent: 10px;
	border: 1px #d4d8bd solid;
	border-width: 0 0 1px 0;
	background-color: transparent;
}
/* hack for IE5.5 */
* html .menuv a, * html .menuv a:visited {
	color: #FAEAA9; /* 006233; 006699 */;
	background-color: transparent; /* fcf8e3; fcf3d0; fef8e2; */;
	width: 170px;
	w\idth: 169px;
}
/* style the link hover */
* html .menuv a:hover {
	color: #FAEAA9; /* 005d86 */;
	display: block;
	text-decoration: none;
	height: 22px;
	line-height: 22px;
	width: 170px;
	background: url('images/mvbackhover.jpg') no-repeat;
	background-color: #faeaa9; /* f9e699; fdfaef; faeaa9; */
}
.menuv :hover > a {
	color: #FAEAA9; /* 005d86 */;
	display: block;
	text-decoration: none;
	height: 22px;
	line-height: 22px;
	width: 170px;
	background: url('images/mvbackhover.jpg') no-repeat;
	background-color: #faeaa9; /* f9e699; fdfaef; faeaa9; */
}
/* 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: 170px;
}
/* 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;
}
