@charset "UTF-8";

ul.tabs {
	margin: 0;
	padding: 0;
	list-style: none;
	height: 37px;
	width: 272px;
	text-align: right;
	float: right;
}
ul.tabs li {
	overflow: hidden;
	position: relative;
	width: 136px;
	float: left;
}
ul.tabs li a {
	text-decoration: none;
	display: block; /*--Gives the bevel look with a 1px white border inside the list item--*/
	outline: none;
	padding: 0;
}
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--*/

}


.tab_container {
	clear: both;
	float: left;
	width: 940px;
	height: 68px;
	margin-right: auto;
	margin-left: auto;
	overflow: hidden;
	background: #FFFFFF;
}
#wrapper .tab_container #tab1 {
	background: #129ad3;
}
#wrapper .tab_container #tab2 {
	background: #399d21;
}

.tab_content {
	padding: 12px 18px;
	font-size: 13px;
	line-height: 1.8em;
	color: #FFFFFF;
	text-align: left;
}
.tab_content a {
	color: #FFFFFF;
	text-decoration: none;
}
.tab_content a:hover {
	color: #FFFFFF;
	text-decoration: underline;
}
