/* CSS Document */
.nav {
	width: 115px;
	padding-top: 8px;
	height: 22px;
	text-align: center;
	font-weight: bold;
	color: #CCCCCC;
	position: relative;
	float: left;
	background-image: url(../Images/navSeperator.gif);
	background-repeat: no-repeat;
	background-position: right top;
	cursor: pointer;
}
.navSelected {
	font-weight: bold;
	color: #FFFFFF;
	background-color: #B21F17;
	float: left;
}

a.navLink:link {
	color:#cccccc;
	text-decoration:none;
}
a.navLink:visited {
	color:#cccccc;
	text-decoration:none;
}
a.navLink:hover {
	color:#ffffff;
	text-decoration:none;
}
a.navLink:active {
	color:#cccccc;
	text-decoration:none;
}

a.navLinkSelected:link {
	color:#ffffff;
	text-decoration:none;
}
a.navLinkSelected:visited {
	color:#ffffff;
	text-decoration:none;
}
a.navLinkSelected:hover {
	color:#cccccc;
	text-decoration:none;
}
a.navLinkSelected:active {
	color:#ffffff;
	text-decoration:none;
}

a.footerLink:link {
	color:#ffffff;
	text-decoration:none;
}
a.footerLink:visited {
	color:#ffffff;
	text-decoration:none;
}
a.footerLink:hover {
	color:#ffffff;
	text-decoration:underline;
}
a.footerLink:active {
	color:#ffffff;
	text-decoration:none;
}
a:link {
	color:#a3a60f;
	text-decoration:none;
}
a:visited {
	color:#a3a60f;
	text-decoration:none;
}
a:hover {
	color:#a3a60f;
	text-decoration:underline;
}
a:active {
	color:#a3a60f;
	text-decoration:none;
}

a.boxLinks:link {
	color:#666666;
	text-decoration:none;
	font-weight:bold;
}
a.boxLinks:visited {
	color:#666666;
	text-decoration:none;
	font-weight:bold;	
}
a.boxLinks:hover {
	color:#a3a60f;
	text-decoration:underline;
	font-weight:bold;	
}
a.boxLinks:active {
	color:#666666;
	text-decoration:none;
	font-weight:bold;	
}

/* Drop Downs */
#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	background-color:#b21f17;
}

#nav a {
	display: block;
	color:#CCCCCC;
	text-decoration:none;
	width:115px;
	text-align: center;
	font-weight: bold;
	padding-top: 7px;
	padding-bottom: 6px;
}
#nav a:hover {
	color:#ffffff;	
}

#nav li { /* all list items */
	float: left;
	width: 115px; /* width needed or else Opera goes nuts */
	padding-top:1px;
	margin: 0px;
	background-image: url(../Images/navSeperator.gif);
	background-repeat: no-repeat;
	background-position: right top;
}

#nav li ul { /* second-level lists */
	position: absolute;
	width: 115px;
	left: -999em;
	background-image: url(../Images/navDdBg.gif);
	background-repeat: repeat-x;
	background-position: left top;
}
#nav li ul li {
	background-image: none;
}
#nav li ul a { /* second-level lists */
	color:#cccccc;
	text-align: left;
	padding-right: 10px;
	padding-left: 10px;
	padding-top: 8px;
	padding-bottom: 0px;
	background-image: none;
} 

#nav li ul a:hover { /* second-level lists */
	color:#ffffff;
	background-image: none;	
}

#nav li:hover ul, #nav li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}
#nav li:hover, #nav li.hover { /* This fixes the IE 7 problem */
    position: static;
}
