/*
 * Styles for the left navigation bar
 * This version is for INTRANET web sites
 */
 
.navBar{
	float: left;
	width: 177px;
	margin: 0px 0px 0px 10px; 
	padding: 0px;
}

/***** NavBar list styles *****/
.navBar ul {
	list-style: none;
	list-style-image: none;
	list-style-position: outside;
	word-spacing: normal;
	
	margin: 0;
	padding: 0;
	
	overflow: hidden;
	
	background-color: #fed649; /*dark yellow - gold*/
	border-right: 0px solid #fed649;
	border-bottom: 0px solid #fed649;
	border: 2px solid #000080;
}

/***** NavBar list item styles *****/
/* hack to fix IE/Win's broken rendering of block-level anchors in lists */
.navBar li {
	border-bottom: 1px solid #fed649;
}

/* fix for browsers that don't need the hack */
html>body .navBar li {
	border-bottom: none;
}


/***** NavBar list link styles *****/
.navBar ul li a, .navBar ul li a:link, .navBar ul li a:visited {
	width: 100%;  /* causes IE to make the links full width, but for some reason
	misaligns them in other browsers */
	height: 100%;
	display: block;
	
	margin: 0;
	padding: .4em .4em .4em 1.6em;
	
	font-family: Helvetica;
	font-weight: bold;
	text-decoration:none;
	
}

.navBar ul li a, .navBar ul li a:hover {
	font-size: .9em;

}

html>body .navBar ul li a {  	/* IE ignores this selector */
	width: auto;   			/* corrects alignment in non-IE browsers */
}

.navBar ul li a:hover{
	background-color: #fee99f; /*light yellow*/
	background-image:url('../images/arrow.gif');  /*arrow*/
	background-repeat: no-repeat;
	background-position: left center;
	
	color: #8D816B;
	
	text-decoration:none;
}

/************** #On Section Link **************/
.buttonOn {
	text-decoration: none;
	background-color: #fee99f;
}

a.buttonOn, a:link.buttonOn, a:visited.buttonOn {
	color: #8D816B;
}
