.main_tab_nav
{
	overflow: hidden;
	width: 100%;
	font-size: 12px; /*font of menu text*/
}


.main_tab_nav ul
{
	list-style-type: none;
	margin: 0;
	margin-left:0px; /*offset of first tab relative to page left edge*/
	padding: 0;
}

.main_tab_nav li
{
	float: left;
	margin: 0;
	padding: 0;
}

.main_tab_nav a
{
	float: left;
	position: relative;
	background: url(../images/tab-blue-left.gif) no-repeat left top;
	margin: 0;
	margin-right: 2px; /*Spacing between each tab*/
	padding: 0 0 0 10px;
	text-decoration: none;
}

.main_tab_nav a span
{
	float: left;
	position: relative;
	display: block;
	background: url(../images/tab-blue-right.gif) no-repeat right top;
	padding: 5px 20px 3px 12px; /* 2) Padding within each tab. The 3rd value, or 3px, should equal (1) MINUS (3) */
	font-weight: bold;
	font-family: arial,verdana;
	color: #FFF;
}


.main_tab_nav .green a{
	background-position: 0 -249px;
	top: 0;
}

.main_tab_nav .green a span{
	background-position: 100% -249px;
	color: #FFF;
	padding-bottom: 3px; /* 3) Bottom padding of selected tab. Should equal (1) PLUS (2) above */
	top: 0;
}
/* Commented Backslash Hack hides rule from IE5-Mac \*/
.main_tab_nav a span 
{
	float:none;
}
/* End IE5-Mac hack */


.main_tab_nav .selected a{
	background-position: 0 -125px;
	top: 0;
}

.main_tab_nav .selected a span{
	background-position: 100% -125px;
	color: black;
	padding-bottom: 3px; /* 3) Bottom padding of selected tab. Should equal (1) PLUS (2) above */
	top: 0;
}

.main_tab_nav a:hover{
	background-position: 0% -125px;
	top: 0;
}

.main_tab_nav a:hover span{
	background-position: 100% -125px;
	padding-bottom: 3px; /* 3) Bottom padding of selected tab. Should equal (1) PLUS (2) above */
	top: 0;
}