/* Popout left menu styles */
.leftMenu {
	margin: 0;
	padding: 0;
	background: #efe3c6;
	border:1px solid #000;
	border-width: 1px 1px 1px 0px;
	float: left;
	position: relative;
	z-index: 0;
	line-height:18px;
	width: 190px;
}
.leftMenu h3 {
	display: block;
	font-weight:bold;
	vertical-align: text-top;
	padding: 10px 0 0px 15px;
	/* font-size controlled by smallFont.css/largeFont.css */
}
.leftMenu ul li a {
	list-style: none;
	display: block;
	background: url(../media/bullet2.gif) no-repeat;
	padding-top: 5px;
	padding-bottom: 5px;
	text-indent: 0;
}
.leftMenu ul {
	position:relative;
	z-index:500;
	list-style-type:none;
	width:190px;
}
/* style the list items */
.leftMenu li {
	list-style-type: none;
	background:#efe3c6;
	text-decoration:none;
	/* for IE7 */
	float:left;

}
.leftMenu li.sub {
	background:#efe3c6;

}
/* get rid of the table */
.leftMenu table {
	position:absolute;
	border-collapse:collapse;
	top:0;
	left:0;
	z-index:100;
	font-size:1em;
}
/* style the links */
.leftMenu a, .leftMenu a:visited {
	display:block;
	text-decoration:none;
	width:151px;
	text-indent:5px;
	padding: 0px 0 0 37px;
	border:1px solid #fff;
	border-width:0px 0px 1px 1px;
}
/* hack for IE5.5 */
* html .leftMenu a, * html .leftMenu a:visited {
/*	width:190px;
	w\idth:189px;*/
	text-indent: 0;
}
/* style the link hover */
* html .leftMenu a:hover {
	color:#000;
	/*background:#eeddb2;*/
	position:relative;
	text-decoration: underline;
}
.leftMenu li:hover {
	position:relative;
}
/* For accessibility of the top level leftMenu when tabbing */
.leftMenu a:active, .leftMenu a:focus {
	color:#000;
	background:#eeddb2 url(../media/bullet2.gif) no-repeat;
}
/* retain the hover colors for each sublevel IE7 and Firefox etc */
.leftMenu li:hover > a {
	color:#000;
	background:#eeddb2 url(../media/bullet2.gif) no-repeat;
	text-decoration: underline;
}
/* hide the sub levels and give them a positon absolute so that they take up no room */
.leftMenu li ul {
	visibility:hidden;
	position:absolute;
	top:-30px;
	/* set up the overlap (minus the overrun) */
	left:140px;
	/* set up the overrun area */
	padding:30px;
	/* this is for IE to make it interpret the overrrun padding */
}
/* for browsers that understand this is all you need for the flyouts */
.leftMenu li:hover > ul {
	visibility:visible;
}
/* for IE5.5 and IE6 : style each level hover */

/* keep the third level+ hidden when you hover on first level link */
.leftMenu ul a:hover ul ul {
	visibility:hidden;
}
/* keep the fourth level+ hidden when you hover on second level link */
.leftMenu ul a:hover ul a:hover ul ul {
	visibility:hidden;
}
/* keep the fifth level hidden when you hover on third level link */
.leftMenu ul a:hover ul a:hover ul a:hover ul ul {
	visibility:hidden;
}
/* make the second level visible when hover on first level link */
.leftMenu ul a:hover ul {
	visibility:visible;
}
/* make the third level visible when you hover over second level link */
.leftMenu ul a:hover ul a:hover ul {
	visibility:visible;
}
/* make the fourth level visible when you hover over third level link */
.leftMenu ul a:hover ul a:hover ul a:hover ul {
	visibility:visible;
}
/* make the fifth level visible when you hover over fourth level link */
.leftMenu ul a:hover ul a:hover ul a:hover ul a:hover ul {
	visibility:visible;
}
.firstMenuLink a, .firstMenuLink a:visited { border-top: 1px solid #efe3c6; }