/* ---- START STYLES FOR TABBED NAVIGATION AREA  ---- */

/* ------ Tab Container ----------------------------- */
#tabNav {
	position: relative;
	width: 100%;
	height: 30px;
	margin-top:4px;
	padding:0;
	width: 980px; /* a width is required for Opera, older Mozilla browsers, and Konqueror browsers */
}

/* ------ First Level Navigation links/tabs --------- */
#tabNav ul {
	margin: 0;
	padding: 0;
	position: absolute;
	bottom: -1px;
	width: 980px; /* a width is required for Opera, older Mozilla browsers, and Konqueror browsers */
}

#tabNav ul li  {
	display: inline;
	list-style: none;
}

/* tab text, height, and left padding */
#tabNav ul a {
	display: block;
	float: left;
	padding: 0 0 4px 16px;
	margin: 1px 2px 0 0;
	text-align: center;
	font-family: tahoma, arial, sans-serif;
	line-height:26px;
	font-size: 12px;
	text-decoration: none;
	color: #333;
   	background: transparent url("../img/tab_background.gif") repeat-x left top;
	border-bottom: none;
}

#tabNav ul a.active,
#tabNav ul a.active:hover {
	border-bottom: none;
	padding-bottom: 5px;
	margin-top: 0;
	background:#d3e4f2 url("../img/tab_background_active.gif") repeat-x left top;
}

#tabNav ul a:hover {
	margin-top: 0;
	background-position:0% -31px;
}

/* Styles that create left curved tab edge and link hover colors */
#tabNav ul a span {
	float:left;
	display:block;
	background:transparent url("../img/tab_backgroundRight.gif") no-repeat right top;
	padding:0 20px 0 0;
	color:#666;
}
#tabNav ul a.active span {
	background-image: url("../img/tab_backgroundRight_active.gif");
	color: #000;
}

#tabNav ul a:hover span {
	color:#000;
	background-position: right -31px ;
}
#tabNav ul a.active:hover span {
	color:#000;
	background-position: right top ;
}


/* ------ Seccond Level Navigation links ------------ */
#tabNav ul#secondary {
	position: absolute;
	margin: 0;
	padding: 0;
	bottom: -.9em;
	left: 1px;
	width: 980px; /* a width is required for Opera, older Mozilla browsers, and Konqueror browsers */
	border:0;
}

#tabNav ul#secondary li a  {
	width: auto;
	display: block;
	float: left;
	padding: 0 20px;
	margin: 0;
	border:0;
	border-right: 1px solid #fff;
	background: none;
	font-size: 11px;
	line-height:16px; /* adjust this number to move links up/down within horizontal bar */
}

#tabNav ul#secondary li a {
	color: #333;
	text-decoration: none;
}

#tabNav ul#secondary li a:hover {
	color: #333;
	text-decoration: underline;
}

#tabNav ul#secondary li a:active {
	color: #336699;
}

/* currently selected secondary navigation item */
#tabNav ul#secondary li a.active, #tabNav ul#secondary li a.active:hover {
	color:#000;
	text-decoration:none;
}

/* removes white divider line after last seconday naviation item - not IE */
#tabNav ul#secondary li:last-child a { border: none; }


/* ------ Seccond Level Navigation Container -------- */
#secondaryNavArea {
	border:0;
	border-bottom:1px solid #d8e4f1;
	margin:-5px 0 0 0;
	clear: both;
	background: #d3e4f2 url("../img/tab_background_secondary.gif") repeat-x top left;
	padding-top: 22px;
}

/* END STYLES FOR TABBED NAVIGATION AREA */