@charset "utf-8";
/* CSS Document */

div#tabs{
	width:550px;
	margin:0px auto;
	padding-left:18px;
	
}	
/* DIV that holds each tab*/
div.my_tab{
	width:550px;
	margin:0px auto;
		
}
	
/* Title of each tab, used when user don't have Javascript'*/	
div.my_tab h5{
	color:#414141;
	border-bottom:solid 1px #cacaca;
		
}
	
/* Tab Bar, created via JS*/
div#tab-bar{
	padding:0px 0px 0px 0px;
	margin:0px;
	height:180px;
	border-bottom:solid 1px #fff;
	margin-bottom:0px;
}
	
/* Single Tab */
div#tab-bar div.mt-tab{
	float:left;
	display:inline;
	position:relative;
	text-align:center;
	margin:0px 0px 0px 0px;
	cursor:pointer;
	height:80px;
	color: #000;
	margin:2px 5px 2px 2px;		
}
	
/* Single Tab, when active */
div#tab-bar div.mt-tab-active{
	float:left;
	display:inline;
	text-align:center;
	margin:0px 0px 0px 0px;
	cursor:pointer;
	border-bottom:none;
	height:80px;
	color:Black;
	font-weight:bold;
	margin:2px 5px 2px 2px;	
		
}