/*
 * Styles for the left navigation bar
 * This version is for PUBLIC web sites
 */

.navBar{
	float: left;
	width: 160px;
	margin: 0px 0px 0px 0px; 
	padding: 0px;
	background-color: #fed649; /*dark yellow - gold*/
	border-right: 0px solid #fed649;
	border-bottom: 0px solid #fed649;
	border: 2px solid #000080;
}

.navBar a {
width: 100%;  /* causes IE to make the links full width, but for some reason
misaligns them in other browsers */
}

html>body .navBar a {  	/* IE ignores this selector */
width: auto;   			/* corrects alignment in non-IE browsers */
}


/*********** .navBar link styles ***********/

.navBar ul a:link, .navBar ul a:visited {
	display: block;
}

.navBar ul {
	list-style: none; margin: 0; padding: 0;
}

/* 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;
}

/*********** .sectionLinks styles ***********/

.sectionLinks{
	position: relative;
	left: 0;
	margin: 0px;
	padding: 0px;
	border-bottom: 0px solid #fed649; /*dark yellow - gold*/
	font-size: 90%;
	text-indent: 7px; /*allows room for the arrow image when "on"*/
}

.sectionLinks ul{
	word-spacing: normal;
	list-style-position: outside;
	display:block;
	text-indent:6px; /*allows room for the arrow image when "on"*/
}
.sectionLinks a {
	font-family: Helvetica;
	font-size: 12px;
    font-weight: bold;
	display: block;
	padding: 3px 0px 3px 10px;
}

.sectionLinks a:hover{
	font-family: Helvetica;
	font-size: 12px;
	font-weight: bold;
	color: #000066;
	text-decoration:none;
	background-color: #fee99f; /*light yellow*/
}

/*
	These classes are generated by makeNav.php for sub-menu selections.
  Using text-indent rather than margin keeps the arrow icon at the left side of the menu box.
*/

.sectionLinks2 a, .sectionLinks2 a:hover {
	text-indent: 15px;
}

.sectionLinks3 a, .sectionLinks3 a:hover {
	text-indent: 25px;
}

/************** #On Section Link **************/

.buttonOn {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10pt;
	color: #8D816B;
	text-decoration: none;
	background-color: #fee99f;
	background-image:url(../images/shape.gif);  /*arrow*/
	background-repeat: no-repeat;
}


