/* HTML output

	<ul class="tabs">
		<li><a href="#tab1">News</a></li>
		<li><a href="#tab2">Events</a></li>
		<li><a href="#tab3">Announcements</a></li>
	</ul>
	
	<div class="tab_container">
		<div id="tab1" class="tab_content">
		</div>
		<div id="tab2" class="tab_content">
		</div>
		<div id="tab3" class="tab_content">
		</div>
	</div>

*/



ul.tabs {
	float: left;
	margin: 0;
	padding: 0;
	overflow:hidden;
   	position:relative;
	list-style: none;
	height: 40px; /*--Set height of tabs--*/
	text-align:center;
}
ul.tabs li {
	float: left;
	padding: 0;
	height: 39px; /*--Subtract 1px from the height of the unordered list--*/
	line-height: 39px; /*--Vertically aligns the text within the tab--*/
	background: transparent;
	font-family:'Droid Sans', Arial, sans-serif;
	position: relative;
}

.tab-news,
.tab-events,
.tab-highlight {
	width: 148px;
	margin-right: 2px;
	text-align: center;
}

.tab-news-icon,
.tab-events-icon,
.tab-highlight-icon {
	display: inline-block;
	width: 20px;
	height: 20px;
	padding-right:2px;
	margin-top: 9px;
	vertical-align: top;
}

.tab-news-icon {
	background: url(/data/images/icon_rss.png) no-repeat;
}

.tab-events-icon {
	background: url(/data/images/icon_events.png) no-repeat;
}

.tab-highlight-icon {
	background: url(/data/images/icon_spotlight.png) no-repeat;
}

.tab-news a {
	-webkit-border-top-left-radius: 10px;
	-moz-border-radius-topleft: 10px;
	border-top-left-radius: 10px;
}

.tab-highlight a {
	-webkit-border-top-right-radius: 10px;
	-moz-border-radius-topright: 10px;
	border-top-right-radius: 10px;
}

ul.tabs li a {
	text-decoration: none;
	color: #A8B5C8;
	display: block;
	text-transform: uppercase;
	font-size: 14px;
	outline: none;
	background:#6B83A3;
	text-align: center;
}

ul.tabs li a:hover {
	color:#ffc;
	background: #2E4772;
}

ul.tabs li.active a {
	color:#fff;
	background:url(/data/images/portal_bg.png) repeat-x;
}

html ul.tabs li.active  { /*--Makes sure that the active tab does not listen to the hover properties--*/
	color:#18325C!important;
}

.tab_container {
	overflow: hidden;
	clear: both;
	float: left; 
	width: 100%;
	background: #E3E9EF;
	min-height:245px;
	position:relative;
}
.tab_content {
	padding: 10px;
	font-size: 100%;
	min-height: 245px;
}