/* ================================================================ 
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/simple_vertical.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.
=================================================================== */
		

/* Add a margin and a relative position with a high z-index to make it appear over any element below */
#menu_container_1 {
	position:relative;
	width:550px;
	height:20px;
	z-index:100;
	vertical-align: top;
}

/* Get rid of the margin, padding and bullets in the unordered lists */
#pmenu_1, #pmenu_1 ul {
	padding:0;
	margin:0;
	list-style-type: none;
}

/* Set up the link size, color and borders */
#pmenu_1 a, #pmenu_1 a:visited {
	display:block;
	
	font-size:7.5pt;
	font-family: arial;
	font-weight: 700;
	color:#444444;
	height:15px;
	line-height:14px;
	text-decoration:none;
	text-indent:0px;
	/*
	border:1px solid #000;
	border-width:1px 0 1px 1px;
	*/
	text-transform: uppercase;
	white-space: nowrap;
	padding-top: 5px;
	padding-left: 25px;
	padding-right: 25px;
	padding-bottom: 5px;
	border-right: 1px solid #676357;
}



/* Set up the sub level borders */
#pmenu_1 li ul li a, #pmenu_1 li ul li a:visited {
border-width:0px; 
color:#000000;
padding-left: 5px;
padding-top: 3px;
padding-right: 0px;
padding-bottom: 0px;
width:210px;
text-transform: none;
height: 15px;
}
#pmenu_1 li a.enclose, #pmenu_1 li a.enclose:visited {border-width:0px;}

/* Set up the list items */
#pmenu_1 li {float:left; /*background:#ffffff;*/ }

/* For Non-IE browsers and IE7 */
#pmenu_1 li:hover {position:relative;}

/* Make the hovered list color persist */
#pmenu_1 li:hover > a {
background:#F3F0E7;
color:#aa0000;
}



#pmenu_1 li:hover > ul > li	{
	width: 210px;
}

#pmenu_1 li:hover > ul > li > ul > li	{
	width: 215px;
}



/* Change the second and third level hovers */
#pmenu_1 li:hover > ul > li:hover > a {
background:#aa0000; color:#ffffff;
}


/* Set up the sublevel lists with a position absolute for flyouts and overrun padding. The transparent gif is for IE to work */
#pmenu_1 li ul {display:none;}

/* For Non-IE and IE7 make the sublevels visible on list hover. This is all it needs */
#pmenu_1 li:hover > ul {
	display:block;
	position:absolute;
	
	top:0px;
	left:215px;
	
	/*
	padding:10px 30px 30px 30px;
	*/
	
	/*background:transparent url(../../images/css_v2_menu_transparent.gif);*/
	background:#F3F0E7;
	
	
	border: 1px solid #666666;
	padding-bottom: 5px;
}

/* Position the first sub level beneath the top level liinks */
#pmenu_1 > li:hover > ul {
left:0px;
top:25px;
width:215px;
}



/* get rid of the table */
#pmenu_1 table {position:absolute; border-collapse:collapse; top:0; left:0; z-index:100; font-size:1em;}

/* For IE5.5 and IE6 give the hovered links a position relative and a change of background and foreground color. This is needed to trigger IE to show the sub levels */
* html #pmenu_1 li a:hover {position:relative; background:#F3F0E7; color:#aa0000;}


/* For accessibility of the top level menu when tabbing */
#pmenu_1 li a:active, #pmenu_1 li a:focus {background:#F3F0E7; color:#aa0000;}

/* For accessibility of the lower levels when tabbing */
/* IE5.5 and 6 */
#pmenu_1 li a:hover ul a:active, #pmenu_1 li a:hover ul a:focus {
background:#223355; color:#ffffff;
}
/* Non-IE and IE7 */
#pmenu_1 li ul a:active, #pmenu_1 li ul a:focus {
background:#223355; color:#ffffff;
}



/* Set up the pointers for the sub level indication */
/* Do not want right now
#pmenu_1 li.fly {background:#7484ad url(../../images/css_v2_menu_over.gif) no-repeat right center;}
#pmenu_1 li.drop {background:#7484ad url(../../images/css_v2_menu_drop.gif) no-repeat right center;}
*/
#pmenu_1 li.fly {/*background:#ffffff no-repeat right center;*/}
#pmenu_1 li.drop {/*background:#ffffff no-repeat right center;*/}




/* This lot is for IE5.5 and IE6 ONLY and is necessary to make the sublevels appear */

/* change the drop down levels from display:none; to visibility:hidden; */
* html #pmenu_1 li ul {
	visibility:hidden;
	display:block;
	position:absolute;
	top:-5px;
	left:80px;
	
	/*padding:5px 0px 5px 5px;*/
	padding-bottom: 5px;
	
	
	background:transparent url(../../images/css_v2_menu_transparent.gif);
	border: 1px solid #666666;
}

/* keep the third level+ hidden when you hover on first level link */
#pmenu_1 li a:hover ul ul{
visibility:hidden;
}

/* make the second level visible when hover on first level link and position it */
#pmenu_1 li a:hover ul {
width:210px; 
visibility:visible; 
top:25px;
left:0px;
background:#F3F0E7;
color:#aa0000;

/* ORIGINAL
visibility:visible; left:-30px; top:5px;  lef\t:-31px; to\p:15px;
*/

}


/* Make our anchors stretch */
#pmenu_1 li a:hover ul li a, #pmenu_1 li a:hover ul li a:visited{
padding-left: 5px;
padding-top: 4px;
width:100%;
}


/* Change our second and third level hovers */
#pmenu_1 li a:hover ul a:hover {
background:#aa0000; color:#ffffff;

}


/* make the third level visible when you hover over second level link and position it and all further levels */
#pmenu_1 li a:hover ul a:hover ul{
/*background:#ffffff;*/
visibility:visible; 
top:0px;
left:215px;

}

/* If you can see the pattern in the above IE5.5 and IE6 style then you can add as many sub levels as you like */
		