/* Nav Button Class - uses a 3 section BG Img which has the 3 different states, and is shifted on the Y to simulate a rollover */

.linkSubHeader { /* The small descriptive text under the main button text */
	width:175px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 8pt;
	color: #666666;
	text-decoration: none;
	display: block;
	text-align:left;
	top:-5px;
	position:relative;
}
.navButton a:link {
	background:  url("../images/navBarImg.jpg") 0 0 no-repeat;
	width:175px;
	display: block;
	padding-top:3px;
	height:36px;
	background-color:#CCCCCC;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13pt;
	color: #006699;
	text-decoration: none;
	text-align:left;
	padding-left:25px;
}
.navButton a:visited {
	background:  url("../images/navBarImg.jpg") 0 0 no-repeat;
	width:175px;
	display: block;
	padding-top:3px;
	height:36px;
	background-color:#CCCCCC;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13pt;
	color: #006699;
	text-decoration: none;
	text-align:left;
	padding-left:25px;
}
.navButton a:hover {
	background-position: 0 -39px;
	background-color:#CCCCCC;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13pt;
	font-weight: normal;
	color: #666666;
	text-decoration: none;
}
.navButton a:active{
	background-position: 0 -78px;
	background-color:#CCCCCC;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13pt;
	font-weight: normal;
	color: #999999;
	text-decoration: none;
}
