@charset "utf-8";
/* CSS Document */
/* ---------------------------------- */
/* ------------ Tabs CSS ------------ */
/* ---------------------------------- */
ul.tabs {
	float: left; width: 578px;
	list-style: none;
	height: 14px; /*--Set height of tabs--*/
	border-bottom: 0px solid #333;
	border-left: 0px solid #333;
}
ul.tabs li {
	float: left;
	height: 28px; /*--Subtract 1px from the height of the unordered list--*/
	line-height: 26px; /*--Vertically aligns the text within the tab--*/
	border: 0px solid #333;
	border-left: none;
	margin-bottom: -1px; /*--Pull the list item down 1px--*/
	overflow: hidden;
	position: relative;
	background: #333333;
}
ul.tabs li a {
	text-decoration: none;
	background-image: url(../images/tab-btn-bg.gif);
	color: #ccc;
	display: block;
	font-size: 1.1em;
	padding: 0 20px;
	border: 1px solid #000; /*--Gives the bevel look with a 1px white border inside the list item--*/
	outline: none;
}
ul.tabs li a:hover {
	background: #ff9900;
	background-image: url(../images/btn-tabs-on.gif);
	color: #333333;
	font-size: 1.1em;
}
html ul.tabs li.active, html ul.tabs li.active a:hover  { /*--Makes sure that the active tab does not listen to the hover properties--*/
	background-image: url(../images/btn-tabs-on.gif);
	border-bottom: 1px solid #000; /*--Makes the active tab look like it's connected with its content--*/
}
/* ---------------------------------- */
/* -------- Tabs Content CSS -------- */
/* ---------------------------------- */
.tab_container {
	border: 0px solid #333;
	border-top: none;
	overflow: hidden;
	clear: both;
	float: left; width: 578px;
}
.tab_content {
	padding: 30px;
	font-size: 1.1em;
	width: 550px;
}
