﻿
/* Tab Classes */
/*UL Tab Navigation*/
ul.tabs {
	position:relative;
	clear:both;
	width:100%;
	padding: 5px 0 5px 2px;
	margin:0;
	list-style:none;
	line-height:1em;
}

ul.tabs  LI { float:left; margin:0; padding:0; }
ul.tabs  A {
	display:block;
	color:#444;
	text-decoration:none;
	font-weight:bold;
	font-size: 12px;
	background:#ddd;
	margin:0;
	padding:0.25em 1em;
	border-left:1px solid #fff;
	border-top:1px solid #fff;
	border-right:1px solid #aaa;
}

ul.tabs A:hover,
ul.tabs A:active,
ul.tabs A.here:link,
ul.tabs A.here:visited {
	background:#bbb;
}

ul.tabs A.here:link,
ul.tabs A.here:visited {
	position:relative;
	z-index:102;
}

/*subnav*/
ul.tabs UL {
	position:absolute;
	left:0;
	top:1.5em;
	float:left;
	background:#bbb;
	width:100%;
	margin:0;
	padding:0.25em 0.25em 0.25em 1em;
	list-style:none;
	border-top:1px solid #fff;
}
ul.tabs UL LI { float:left; display:block; margin-top:1px; }
ul.tabs UL A {
	background:#bbb;
	color:#fff;
	display:inline;
	margin:0;
	padding:0 1em;
	border:0
}
ul.tabs UL A:hover,
ul.tabs UL A:active,
ul.tabs UL A.here:link,
ul.tabs UL A.here:visited { color:#444; }
/* end of Tabs   */