div#tabs{
	width:915px;
	margin:0px auto;
	font-size:11px;	
}	
/* DIV that holds each tab*/
div.my_tab{
	width:895px;
	margin:0px auto;
	padding-bottom:20px;
}
	
/* 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:0;
	margin:0px;
	height:50px;
	background:#FFFFFF;
	border-bottom:solid 1px #fe349a;
	margin-bottom:40px;
	font:normal 11px "Arial";
}
	
/* Single Tab */
div#tab-bar div.mt-tab{
	/*
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	*/
	float:left;	
	display:inline;
	position:relative;
	text-align:center;
	margin:37px 5px -3px 0px;
	cursor:pointer;
	border-top:solid 1px #ff67b4;
	border-left:solid 1px #ff67b4;
	border-right:solid 1px #ff67b4;
	border-bottom:solid 1px #ff67b4;
	font:normal 12px "Arial";	
	height:20px;
	color:#ff67b4;
	padding:4px 10px 1px 10px;		
}
	
* html div.mt-tab {
	position:relative;top:4px
}
	
/* Single Tab, when active */
div#tab-bar div.mt-tab-active{
	background: url(../images/active-tab.gif) repeat-x top left;
	float:left;	
	display:inline;
	text-align:center;
	margin:26px 5px -5px 0px;
	cursor:pointer;
	border-top:solid 1px #fe349a;
	border-left:solid 1px #fe349a;
	border-right:solid 1px #fe349a;
	border-bottom:solid 1px #ff67b4;
	height:17px;
	color:#fe349a;
	font-weight:bold;
	padding:14px 10px 5px 10px;	
		
}

* html div.mt-tab-active {
	position:relative;
	top:5px;
	height:22px;
}