@charset "utf-8";
/* CSS Document */

/* ================================================================ 
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/flyout_4level.html
Copyright (c) 2005-2007 Stu Nicholls. All rights reserved.
This stylesheet and the associated (x)html may be modified in any 
way to fit your requirements.
=================================================================== */
.pmenu {
	font-size:11px;
	margin:-4px 0px 0px -3px; /* this page only */
	/*border-top:2px white solid;*/
}
/* remove all the bullets, borders and padding from the default list styling */
.pmenu ul {
	position:relative;
	z-index:500;
	padding:0;
	margin:0;
	list-style-type:none;
	width:100%;
}
/* style the list items */
.pmenu li {
	background:#d4d8bd;
	/*height:24px;*/
	list-style-type:none;
	display:block;
	/* for IE7 */
	float:left;
}
.pmenu li.sub {background:#d4d8bd url(orange-arrow-down.gif) no-repeat 99% center;} 

/* get rid of the table */
.pmenu table {
	position:absolute;
	border-collapse:collapse;
	top:0; left:0;
	z-index:100;
	/*font-size:1em;*/
	margin:0;
}

/* style the links */
.pmenu a, .pmenu a:visited {
	display:block;
	text-decoration:none;
	/*height:23px; */
	line-height:1.8;
	list-style-type:none;
	width:176px;
	color:#000;
	text-indent:3px;
	border-top: none;
	border-right: none;
	border-bottom: 1px solid #fff;
	border-left: none;
	/*padding-right:4px;*/
	/*max-width:170px;*/
}

.pmenu li ul li {
	border: 1px solid #999999;
}
.pmenu li ul li+li {
	border-top: 1px none #999999;
	border-right: 1px solid #999999;
	border-bottom: 1px solid #999999;
	border-left: 1px solid #999999;
}
.pmenu li ul li a {
	border: 0;
}

/* hack for IE5.5 */
* html .pmenu a, * html .pmenu a:visited {width:176px;; w\idth:175px;}
/* style the link hover */
* html .pmenu a:hover {color:#fff; background:#1e5820; position:relative;}
* html .pmenu li.sub a:hover {color:#efa; background:#1e5820 url(orange-arrow-right.gif) no-repeat 99% center; position:relative;}
.pmenu li:hover {position:relative;}

/* For accessibility of the top level menu when tabbing */
.pmenu a:active, .pmenu a:focus {
	color:#fff;
	background:#1e5820;
}

/* retain the hover colors for each sublevel IE7 and Firefox etc */
.pmenu li:hover > a {color:#fff; background:#1e5820;}
.pmenu li.sub:hover > a {background:#1e5820 url(orange-arrow-right.gif) no-repeat 99% center;}

 
/* hide the sub levels and give them a positon absolute so that they take up no room */
.pmenu li ul {
	visibility:hidden;
	position:absolute;
	top:-15px;
	/* set up the overlap (minus the overrun) */
	left:163px;
	/* set up the overrun area */
	padding:15px;
	/* this is for IE to make it interpret the overrrun padding */
	background:transparent url(transparent.gif);
}
/*.pmenu li ul {border: 0px solid #333333;} /* For Testing */
/* for browsers that understand this is all you need for the flyouts */
.pmenu 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 */
.pmenu ul a:hover ul ul{
	visibility:hidden;
}
/* keep the fourth level+ hidden when you hover on second level link */
.pmenu ul a:hover ul a:hover ul ul{
	visibility:hidden;
}
/* keep the fifth level hidden when you hover on third level link */
.pmenu ul a:hover ul a:hover ul a:hover ul ul{
	visibility:hidden;
}
/* make the second level visible when hover on first level link */
.pmenu ul a:hover ul {
	visibility:visible;
}
/* make the third level visible when you hover over second level link */
.pmenu ul a:hover ul a:hover ul{ 
	visibility:visible;
}
/* make the fourth level visible when you hover over third level link */
.pmenu ul a:hover ul a:hover ul a:hover ul { 
	visibility:visible;
}
/* make the fifth level visible when you hover over fourth level link */
.pmenu ul a:hover ul a:hover ul a:hover ul a:hover ul { 
	visibility:visible;
}
