.wireframemenu{
background-color: white;
width: 220px;
}

* html .wireframemenu{ /*IE only rule. Original menu width minus all left/right paddings */
width: 220px;
}

.wireframemenu ul{
padding: 0;
margin: 0;
list-style-type: none;
}

.wireframemenu a{
	display: block;
	width: 100%; /*Define width for IE6's sake*/
	color: #000000;
	text-decoration: none;
	border-bottom-width: 1px;
	border-bottom-style: dashed;
	border-bottom-color: #DADADA;
	font-size: 110%;
	padding-top: 4px;
	padding-right: 3px;
	padding-bottom: 4px;
	padding-left: 0px;
	margin-left: 10px;
}

.wireframemenu a:visited{
color: #595959;
}

html>body .wireframemenu a{ /*Non IE rule*/
width: auto;
}

.wireframemenu a:hover{
background-color: #FFFFFF;
color: #B66E13;
}

/*
    FORMERLY IN FILE vertical_menu.css
*/
.leftNavBox {
	float:left;
	width: 180px;
	margin-bottom: 10px;
	text-align: left;
	padding-left: 10px;
}
.leftNavBox ul{
	margin: 0;
	padding: 0;
	list-style-type: none;
	width: 160px;
}
.leftNavBox ul li{
	position: relative;
}
/*Sub level menu items */
.leftNavBox ul li ul{
	position: absolute;
	width: 170px; /*sub menu width*/
	top: 0;
	visibility: hidden;
}
/* Sub level menu links style */
.leftNavBox ul li a{
	display: block;
	overflow: auto; /*force hasLayout in IE7 */
	color: #FFFFFF;
	text-decoration: none;
	background: #2B568D;
	border: 1px solid #ccc;
	border-bottom: 0;
	padding-top: 3px;
	padding-right: 5px;
	padding-bottom: 3px;
	padding-left: 10px;
	width: 100%;
} 
.leftNavBox ul li a:visited{
	color: #FFFFFF;
}
.leftNavBox ul li a:hover{
	background-color: #003366;
}
.leftNavBox .subfolderstyle{
	background-image: url(/library/images/arrow-list.gif);
	background-repeat: no-repeat;
	background-position: left center;
}

.current{
	background-image: url(/library/images/arrow-list.gif);
	background-repeat: no-repeat;
	background-position: right center;
}
/* Holly Hack for IE \*/
* html .leftNavBox ul li { float: left; height: 1%; }
* html .leftNavBox ul li a { height: 1%; }
/* End */
