ul.tabs {
	margin: 0;
	padding: 0;
	float: left;
	list-style: none;
	width:100%;
	border-bottom: 1px solid #ccc;
	background-color:#ccc;
}

ul.tabs li {
	float: left;
	margin: 0;
	padding: 0;
	border: 1px solid #ccc;
	border-left:none;
	border-top:none;
	margin-bottom: -1px; /*--Pull the list item down 1px--*/
	overflow: hidden;
	position: relative;
	background: #ccc;
}

ul.tabs li a {
	text-decoration: none;
	color: #000;
	display: block;
	padding: 0 5px;
	border: 1px solid #fff; /*--Gives the bevel look with a 1px white border inside the list item--*/
	outline: none;
}

ul.tabs li a:hover {
	background: #ccc;
}

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--*/
}

.tab_container {
	overflow: hidden;
	clear: both;
	float: left;
	width: 278px;
	background: #fff;
	padding:10px;
}
.tab_content {
	
}