ul.tabs {
	margin: 0;
	padding: 0;
	float: left;
	list-style: none;
	border-bottom: 1px solid #bdbcbd;
	border-left: 1px solid #bdbcbd;
	border-radius:7px 7px 0px 0px;
	width: 100%;
}
ul.tabs li {
	float: left;
	margin: 0;
	padding: 0;
	border: 1px solid #bdbcbd;
	border-left: none;
	border-radius:7px 7px 0px 0px;
	margin-bottom: -1px;
	background: #f2f2f2;
	overflow: hidden;
	position: relative;
}
ul.tabs li a {
	text-decoration: none;
	display: block;
	padding: 5px 10px;
	border: 1px solid #fff;
	outline: none;
	height:32px; /* OVERRIDE THIS TO MAKE TABS TALLER */
	overflow:hidden;
	min-width:85px; /* OVERRIDE THIS TO MAKE TABS WIDER */
	max-width:85px; /* OVERRIDE THIS TO MAKE TABS WIDER */
	text-align:center;
}
ul.tabs li a:hover {
	background: #ddd;
}	
html ul.tabs li.active, html ul.tabs li.active a:hover  {
	background: #fff;
	border-bottom: 1px solid #fff;
}
.tab_container {
	border: 1px solid #bdbcbd;
	border-top: none;
	clear: both;
	float: left; 
	width: 100%;
	background: #fff;
	margin-bottom:10px;
}
.tab_content {
	padding: 5px;
	overflow:hidden;
	overflow-y:auto;
	margin-top:0px; /* OVERRIDE THIS IF NEED WHITE SPACE ABOVE THE TAB CONTENT */
}