@charset "UTF-8";
/* CSS Document */
/* tab nav styles */
.tabnav {
	font-family:Arial, Helvetica, sans-serif;
	font-size:0.917em;
	height:30px; /* height of button */
	*line-height:30px; /* set height of button for IE */
	margin-left:12px;
	margin-top:18px;
	*margin-top:17px;
}
.tabnav ul {
	float:left;
	margin:0;
	padding:10px 0 0 0; /* padding on top of text */
	*padding:0; /* padding set to 0 for IE */
	text-align: center; /* centers text in tab */
}
.tabnav li {
	display: inline; /* lines up tabs horizontally */
	margin-left:-1px; /* adjusts spacing between tabs */
}
.tabnav li a {
	background: url(../images/tab_left.png) no-repeat left top; /* left side of tab in normal state */
	*background: url(../images/tab_left.png) no-repeat left 1px; /* left side of tab in normal state for IE */
	color:#e3ebf4;
	font-weight: bold; 
	padding:10px 0 7px 0; /* sets top and bottom padding to size of tab */
	*padding:0; /* set top and bottom padding to 0 for IE */
	padding-left:20px; /* sets the space to the left of the left of the link text */
	text-decoration: none;
}
.tabnav li a:hover {
	color:#000;
	background: url(../images/tab_left.png) no-repeat left top; /* left side of tab in hover state */
	*background: url(../images/tab_left.png) no-repeat left 1px; /* left side of tab in hover state for IE */
}
.tabnav li a.current-nav-link {
	color:#000;
	background: url(../images/tab_left.png) no-repeat left bottom; /* left side of tab in current state */
}
.tabnav li a.current-nav-link:hover {
	color:#000;
	background: url(../images/tab_left.png) no-repeat left bottom; /* left side of tab in current hover state */
}
.tabnav li a span {
	padding:10px 20px 7px 0;
	*padding:9px 20px 8px 0;
	background: url(../images/tab_right.png) no-repeat right top; /* right side of tab in normal state */
	*background: url(../images/tab_right.png) no-repeat right 1px; /* right side of tab in normal state for IE */
}
.tabnav li a:hover span {
	background: url(../images/tab_right.png) no-repeat right top; /* right side of tab in hover state */
	*background: url(../images/tab_right.png) no-repeat right 1px; /* right side of tab in hover state for IE */
}
.tabnav li a.current-nav-link span {
	background: url(../images/tab_right.png) no-repeat right bottom; /* right side of tab in current state */
}
.tabnav li a.current-nav-link:hover span {
	background: url(../images/tab_right.png) no-repeat right bottom; /* right side of tab in current hover state */
}