/* ================================================================ 
This nenu was adapted from the cssplay simple vertical menu. 
=================================================================== */

/* ================================================================ 
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.
=================================================================== */


	#newMenuBar {
		width: 950px;
		float: left;
		margin: 1px 0 0 0;
		padding: 0;
		background: #00234D;
		text-align: right;
   		background: url(../../images/template/bg_menu.png);
		z-index: 100;
	}
	
		#newMenuBar ul {
			list-style-type: none;
			height: 26px;
		  	margin: 0;
			padding: 0;
			z-index: 200;
		}
		
		#newMenuBar ul li {
			/*display: inline;*/
			line-height: 26px;
			height: 26px;
			display: block;
		   	width: 102px;
		    float: left; 
			color: #fff;
			font-weight: bold;
			margin: 0;
			padding: 0;
     		text-align: center;
			z-index: 205;
		}
		
		#newMenuBar ul li a {
			display: block;
			height: 26px;
			text-decoration: none;
			color: #fff;
		}
		
		#newMenuBar ul li a:hover {
			text-decoration: none;
			color: #fff;
			background: url(../../images/template/bg_menu_hover.png);
			background-repeat: repeat-x;
		}
		
			#newMenuBar ul ul li a:hover {
				text-decoration: none;
				color: #d00;
				background: none;
			}


/* Set up the list items */
#newMenu li {
	float: left;
}

/* For Non-IE browsers and IE7 */
#newMenu li:hover {
	position: relative;
}

/* Set up the sublevel lists with a position absolute for flyouts and overrun padding. The transparent gif is for IE to work */
#newMenu li ul {
	display: none;
	font-size: 90%;
	z-index: 300;
}

#newMenu li ul li {
	text-align: left;
	width: 200px;
	line-height: 16px;
	text-indent: 0;
	float: left;
	padding: 0;
	background-image: url('/images/newmenu/libg.png');
	background-repeat: repeat-y;
	padding-left: 10px;
	}

	#newMenu li ul li a {
		display: block;
		width: 200px;
		height: 16px;	
		margin: 0;
		padding: 0 0 0 0.9em;
		font-weight: bold;
	}
	
	.headerLi {
		height: 14px !important;
		padding: 0 !important;
		margin: 0 !important;
		background-image: none !important;
		background-color: transparent !important;
	}
	
	.headerLi p {
		margin: 0 !important;
		line-height: 18px;
		padding: 0 !important;
	}

	.footerLi {
		height: 14px !important;
		padding: 0 !important;
		margin: 0 0 0 0 !important;
		background-image: none !important;
		background-color: transparent !important;
	}
	
	

#newMenu li ul li a {
	color: #666;
	font-weight: bold;
}

#newMenu li ul li ul {
	margin: 23px 0 0 80px !important;
	z-index: 400 !important;
}

/* For Non-IE and IE7 make the sublevels visible on list hover. This is all it needs */
#newMenu li:hover > ul {
	display: block; 
	position: absolute; 
	top: -24px; 
	left: 70px; 
	margin: 0;
	padding: .2em 0 0 0;
	width: 200px;
	background: transparent url(transparent.gif);
}

/* Position the first sub level beneath the top level liinks */
#newMenu > li:hover > ul {
	left: 0px; 
	top: 24px;
}

/* get rid of the table */
#newMenu table {
	position: absolute; 
	border-collapse: collapse; 
	top: 0; 
	left: 0; 
	font-size: 1em;
	z-index: 400;
}

/* 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 #newMenu li a:hover {
	position: relative;
}

/* For accessibility of the top level menu when tabbing */
#newMenu li a:active, #newMenu li a:focus {
	color: #c00;
}

/* 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 #newMenu li ul {
	visibility: hidden; 
	display: block; 
	position: absolute; 
	top: -10px; 
	left: 80px; 
	padding: 0;
	background: transparent url(transparent.gif);
}

/* make the second level visible when hover on first level link and position it */
#newMenu li a:hover ul {
	visibility: visible; 
	left: -30px; 
	top: 14px;
	lef\t:1px; 
	to\p:26px;
	z-index: 800;
}

#newMenu li a:hover ul li {
	z-index: 805;
}

/* make the third level visible when you hover over second level link and position it and all further levels */
#newMenu li a:hover ul a:hover ul{ 
	visibility: visible; 
	top: -25px; 
	left: 60px;
	z-index: 900;
}

#newMenu li a:hover ul a:hover ul li{ 
	z-index: 905;
}

/* keep the third level+ hidden when you hover on first level link */
#newMenu li a:hover ul ul{
	visibility: hidden;
}

.margin-left {
	margin-left: -14px;
}

.margin-right { 
	margin-right: 14px;
	}


/* 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 */