﻿/* Tabs CSS */

ul.tabs {
	margin: 0;
	padding: 0;
	float: left;
	list-style: none;
	height: 21px; /*--Set height of tabs--*/
	border-bottom: 1px solid #cccccc;
	border-left: 1px solid #cccccc;
	width: 339px;
}
ul.tabs li {
	float: left;
	margin: 0;
	padding: 0;
	height: 20px; /*--Subtract 1px from the height of the unordered list--*/
	line-height: 20px; /*--Vertically aligns the text within the tab--*/
	border: 1px solid #cccccc;
	border-left: none;
	margin-bottom: -1px; /*--Pull the list item down 1px--*/
	overflow: hidden;
	position: relative;
	background: #f4f4f4;
}
ul.tabs li a {
	text-decoration: none;
	display: block;
	padding: 0 11px;
	outline: none;
	color:#909090;
	font-size:11px;
	text-decoration:none;
	font-family: Arial;
	text-transform:uppercase;
}
ul.tabs li a:hover {
	background: #ffffff;
	color:#ec7154;
}

html ul.tabs li.active a
{
	color:#ec7154;
}
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: #fff;
	border-bottom: 1px solid #fff; /*--Makes the active tab look like it's connected with its content--*/
	color:#ec7154;
}

/* Tab Content CSS */

.tab_container {
	border: 1px solid #cccccc;
	border-top: none;
	overflow: hidden;
	float: left; width: 338px;
	background: #fff;
}
.tab_content {
	padding:25px 10px 25px 10px;
}

