/* CSS tabs Document */
/* this layout won't work in ie5 mac unless you give widths to all floats or convert it to inline-block */
/* http://www.pmob.co.uk/pob/hover/tab1.htm */
/* original with minior modifications: end tabs should stay white when not current */

#navwrap {
	width: 900px;
	position: absolute;
	top: 92px;
	left: 0px;
}
#navwrap ul, #nav li {
	margin: 0px;
	padding: 0px;
	list-style:none;
}
/* mac hide - ie5 hacks \*/
ul#nav, ul#nav li, ul#nav a, ul#nav a span {
	height:1%;
	voice-family: "\"}\"";
	voice-family:inherit;
}
ul#nav a span {
	height:auto
}
/* end hide - keep above hacks in the same order at all times */

ul#nav li, ul#nav li a, ul#nav li span {
	float:left;
	line-height:21px;
	text-decoration:none;
	color:#999999;
	text-align:center;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
}
ul#nav li a {/* pre-load hover image*/
	background-image: url(images/center-tab-selected-right.gif);
	background-repeat: no-repeat;
	background-position: right top;
}
ul#nav li a:link, ul#nav li a:visited {
	background-image: url(images/normal-join.gif);
	background-repeat: no-repeat;
	background-position: right top;
}
/* fixed width version */
ul#nav li a span {
	padding-top:1px;
	/*padding-left:4px;*/  /* min 0 */
	padding-bottom:2px; /*  */
	padding-right:14px; /* min equals right portion of overlap */
	width: 134px; /* ul#nav li a span width = round ((navbar width - right portion of overlap width) / # of tabs) - right portion of overlap width */
	/* e.g. ul#nav li a span width = round (900 - 14)/6 - 14 = 133.67 = 134 */
	margin-left: auto; /* for center text on fixed width tabs */
	margin-right: auto; /* for center text on fixed width tabs */
}
/* hover */
ul#nav li a:hover {
	visibility:visible
}/* ie needs this*/
ul#nav li a:hover {
	background:url(/images/center-tab-selected-right.gif) no-repeat right top;
	z-index:999;
	position:relative;
}
ul#nav li a:hover span {
	background:url(/images/center-tab-selected-left.gif) no-repeat -176px top; /* -(graphics width - margin-left)*/
	margin-left:-24px; /* same as -ve of ul#nav li a span padding-right*/
	padding-left:24px; /* same as ul#nav li a span padding-right*/
	position:relative;
	cursor:pointer;
	cursor:hand;/* invalid css but ie5+ needs it*/
	z-index:999;
	font-weight: bold;
	color: #ffffff;
}
/*...*/
ul#nav li.first a span {
	background:url(/images/left-end-tab-normal.gif) no-repeat left top;
	padding-left:12px; /* right portion of toal overlap tab, but adjust to fit overall width due to rounding*/
}
/*ul#nav li.last a {
	background:url(/images/right-end-tab-normal.gif) no-repeat right top;
}*/
ul#nav li.last a span {
	background:url(/images/right-end-tab-normal.gif) no-repeat right top;
	padding-right:14px; /* right portion of overlap */
}
/* set current item when its in the middle of the tabs */
ul#nav li#current a, ul#nav li#current a:hover {
	background: url(/images/center-tab-selected-right.gif) no-repeat right top;
}
ul#nav li#current a span, ul#nav li#current a:hover span {
	background:url(/images/center-tab-selected-left.gif) no-repeat -176px top;
	margin-left:-24px;
	padding-left:24px; /* min equals width of tab overlaps */
	position:relative;
	font-weight: bold;
	color:#ffffff;
}
/* set current item when its on the far right tab  */
ul#nav li#lastcurrent a, ul#nav li#lastcurrent a:hover, ul#nav li.last a:hover {
	background:url(/images/right-end-tab-over.gif) no-repeat right top;
}
ul#nav li#lastcurrent a span, ul#nav li#lastcurrent a:hover span, ul#nav li.last a:hover span {
	background:url(/images/center-tab-selected-left.gif) no-repeat -176px top;
	margin-left:-24px;
	padding-left:24px;
	padding-right:14px; /* right portion of overlap */
	position:relative;
	font-weight: bold;
	color:#ffffff;
}
/* set current item when its the first tab  */
ul#nav li#firstcurrent a, ul#nav li#firstcurrent a:hover, ul#nav li.first a:hover {
	background:url(/images/center-tab-selected-right.gif) no-repeat right top;
	z-index:999;
}
ul#nav li#firstcurrent a span, ul#nav li#firstcurrent a:hover span, ul#nav li.first a:hover span {
	background:url(/images/left-end-tab-over.gif) no-repeat left top;
	padding-left:12px; /* right portion of toal overlap tab, but adjust to fit overall width due to rounding*/
	color:#ffffff;
	font-weight: bold;
	z-index:999;
}
ul#nav li#firstcurrent a:hover span, ul#nav li.first a:hover span {
	margin-left:0
}
ul#nav li#next a:hover span {
	background-image:url(/images/center-tab-selected-left-next.gif)
}
ul#nav li#previous a:hover {
	background-image:url(/images/center-tab-selected-left-previous.gif)
}
/* bar under nav */
/*.bar {
	height:2em;
	background:#036;
	padding:2px 10px;
	clear:both;
	color:#fff;
	font-weight:bold;
}*/

/* Sub-menu */
#dropmenudiv {
	position:absolute;
	z-index:100;
	margin-top:-1px;
	padding:0px;
}
.menu a:link, .menu a:visited, .menu a:active {
	color: #999999;
	background-color: #d1d5d8;
	display: block;
	width:144px;
	/*min-width:144px;
	width:auto;*/
	
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height: normal;
	font-weight: normal;
	text-decoration:none;
	padding:5px 2px 5px 12px;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #ffffff;
	border-right-color: #ffffff;
	border-bottom-color: #ffffff;
	border-left-color: #ffffff;
	filter: Alpha(Opacity=90);
	background-image: url(images/bg_submenuNormal.gif);
	background-repeat: repeat;
	background-position: left top;
	vertical-align: middle;
	white-space: nowrap;
	overflow: visible;
}
.menu a:hover {
	color: #ffffff;
	background-color:#77abd1;
	font-weight: bold;
	filter: Alpha(Opacity=90);
	background-image: url(images/bg_submenuHover.gif);
	background-repeat: repeat;
	background-position: left top;
}
