@charset "utf-8";
/* CSS Document */

/* The outermost container of the Menu Bar, an auto width box with no margin or padding */
ul.LeftNavBar
{
	margin: 0;
	padding: 0;
	cursor: default;
	width: 100%;
	border: none;
	list-style-type: none;
}
/* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */
ul.LeftNavBarActive
{
	z-index: 1000;

}
/* Menu item containers, position children relative to this container and are a fixed width */
ul.LeftNavBar li
{
	list-style-image:url(../images/bullet14-003366.png);
	list-style-position: inside;
	background-image:none;
	
	margin-left:0px;
	padding-left: 5px;
	padding-bottom:.5em;
	font-size: 12pt;
	font-weight:bolder;
	position: relative;
	text-align: left;
	cursor: pointer;
	width: 265px;
	border-bottom: 1px solid #bbbbbb;

}

