/* ================================================================ 
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.
=================================================================== */
.vmenu {
	/* height:150px;
	font-size:90%;
	margin:25px 0 50px 15px; this page only */
}

/* remove all the bullets, borders and padding from the default list styling */
.vmenu ul {
	position: relative;
	z-index: 500;
	padding: 0;
	margin: 0;
	list-style-type: none;
	width: 150px;
}

/* style the list items */
.vmenu li {
	background-color: #e3bb38;
	/* for IE7 */
	float: left;
	margin: 0 0 6px 0;
}

.vmenu li.active a {
	color: #333333;
	background-color: #F5E8BA;
}

.vmenu li.sub {
	/*background:#d4d8bd url(sub.gif) no-repeat right center;*/
} 

/* get rid of the table */
.vmenu table {
	position: absolute;
	border-collapse: collapse;
	top: 0;
	left: 0;
	z-index: 100;
}

/* style the links */
.vmenu a, .vmenu a:visited {
	display: block; 
	text-decoration: none;
	height: 21px;
	line-height: 21px;
	width:149px;
	text-indent:5px;
	color: #FFFFFF;
	border: 1px solid #c7ae5a;
	/*border-width:0 1px 1px 1px;*/
}

/* hack for IE5.5 */
* html .vmenu a, * html .vmenu a:visited {
	width:150px; w\idth:149px;
}

/* style the link hover */
* html .vmenu a:hover {
	background-color: #F5E8BA;
	color: #333333;
	position:relative;
}

.vmenu a.active {
	background-color: #F5E8BA;
	color: #333333;
}

.vmenu li:hover {
	position:relative;
}

/* For accessibility of the top level menu when tabbing */
.vmenu a:active, .vmenu a:focus {
	background-color: #F5E8BA;
	color: #333333;
}

/* retain the hover colors for each sublevel IE7 and Firefox etc */
.vmenu li:hover > a {
	background-color: #F5E8BA;
	color: #333333;
}
 
/* hide the sub levels and give them a positon absolute so that they take up no room */
.vmenu li ul {
	visibility: hidden;
	position: absolute;
	top: -30px;
	/* set up the overlap (minus the overrun) */
	left: 122px;
	/* set up the overrun area */
	padding: 30px;
	/* this is for IE to make it interpret the overrrun padding */
	background: transparent url(transparent.gif);
}

/* for browsers that understand this is all you need for the flyouts */
.vmenu li:hover > ul {
	visibility:visible;
}

/* for IE5.5 and IE6 you need to style each level hover */

/* keep the third level+ hidden when you hover on first level link */
.vmenu ul a:hover ul ul{
visibility:hidden;
}
/* keep the fourth level+ hidden when you hover on second level link */
.vmenu ul a:hover ul a:hover ul ul{
visibility:hidden;
}
/* keep the fifth level hidden when you hover on third level link */
.vmenu ul a:hover ul a:hover ul a:hover ul ul{
visibility:hidden;
}

/* make the second level visible when hover on first level link */
.vmenu ul a:hover ul {
visibility:visible;
}
/* make the third level visible when you hover over second level link */
.vmenu ul a:hover ul a:hover ul{ 
visibility:visible;
}
/* make the fourth level visible when you hover over third level link */
.vmenu ul a:hover ul a:hover ul a:hover ul { 
visibility:visible;
}
/* make the fifth level visible when you hover over fourth level link */
.vmenu ul a:hover ul a:hover ul a:hover ul a:hover ul { 
visibility:visible;
}





















.pmenu {
	padding:0;
	list-style-type: none; 
	width: 152px;
}

.pmenu ul {
	padding: 0;
	margin: 0;
	list-style-type: none;
	width: 152px;
}

.pmenu li {
	position: relative;
}

.pmenu a, .pmenu a:visited {
	display:block;
	width:149px;
	height:21px;
	line-height:21px;
	text-decoration:none;
	text-indent:5px;
	background-color: #e3bb38;
	color: #FFFFFF;
	border: 1px solid #c7ae5a;
	/*border-width:0 1px 1px 0;*/
	margin: 0 0 6px 0;
}

.pmenu a.active {
	background-color: #F5E8BA;
	color: #333333;
}

.pmenu li:hover > a {
	background-color: #F5E8BA;
	color: #333333;
}

.pmenu li ul {
	display: none;
}

.pmenu li:hover > ul {
	display: block;
	position: absolute;
	top: 0;
	left:152px;
}

