/* MAIN NAV */

.nav {
	position: relative;
	padding: 0 0 0 0px;
	margin: 0 auto 0 auto;
	height: 23px;
	border-bottom: 5px solid #171819;
	margin-bottom: 1px;
	margin-left: 0px;
	list-style: none;
}
.nav li {
	float:left;
}
.nav li a {
	float: left;
	display: block;
	margin-right:1px;
	color:#18a4d8;
	font: 0.75em Arial, Helvetica, sans-serif;
	text-decoration: underline;
	font-weight: bold;
	padding:0 0 0 7px; /*Padding to accomodate left tab image. Do not change*/
	height: 23px;
	line-height: 23px;
	border: none;
	text-align: center;
	cursor: pointer;
	background: url(../assets/nav/menu_left.png) no-repeat left top; /*left tab image path*/
}
.nav li a span {
	float: left;
	display: block;
	border: none;
	background: url(../assets/nav/menu_right.png) no-repeat right top; /*right tab image path*/
	padding: 0px 7px 0px 0px; /*Padding of menu items*/
}
.nav li.current a, .nav li a:hover {
	color: #fff;
	text-decoration: none;
	border: none;
	background: url(../assets/nav/menu_hover_left.gif) no-repeat left top; /*left tab image path*/
}
.nav li.current a span, .nav li a:hover span {
	color: #fff;
	border:none;
	background: url(../assets/nav/menu_hover_right.gif) no-repeat right top; /*right tab image path*/
}