ul.tabs {
	margin: 0px;
	padding: 0px;
	float: left;
	list-style: none;
	height: 24px; /*--Set height of tabs--*/
	border-bottom: 1px solid #999999;
	width: 100%;
}
ul.tabs li {
	float: left;
	margin-top: 0px;
	margin-bottom: 0px;
	margin-left: 3px;
	margin-right: 0px;
	padding: 0;
	height: 23px; /*--Subtract 1px from the height of the unordered list--*/
	line-height: 23px; /*--Vertically aligns the text within the tab--*/
	/**border: 1px solid #999999;**/
	margin-bottom: -1px; /*--Pull the list item down 1px--*/
	overflow: hidden;
	position: relative;
}

ul.tabs li.selected {
	float: left;
	margin-top: 0px;
	margin-bottom: 0px;
	margin-left: 3px;
	margin-right: 0px;
	padding: 0;
	height: 23px; /*--Subtract 1px from the height of the unordered list--*/
	line-height: 23px; /*--Vertically aligns the text within the tab--*/
	border: 1px solid #999999;
	margin-bottom: -1px; /*--Pull the list item down 1px--*/
	overflow: hidden;
	position: relative;
}

ul.tabs li a {
	text-decoration: none;
	color: #000000;
	display: block;
	font-size: 11px;
	padding: 0 10px;
	border: 1px solid #ffffff; /*--Gives the bevel look with a 1px white border inside the list item--*/
	outline: none;
}
ul.tabs li a:hover {
}

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: #ffffff;
	border-bottom: 1px solid #ffffff; /*--Makes the active tab look like it's connected with its content--*/
}

.tab_container {
	/*border: 1px solid #999999;*/
	border-top: none;
	overflow: hidden;
	clear: both;
	float: left; 
	width: 100%;
	background: #ffffff;
}
.tab_content {
	padding-top: 20px;
	padding-bottom: 20px;
	padding-left: 0px;
	padding-right: 0px;
}