@charset "utf-8";
/* CSS Document */

#multi {
	width: 600px;
	margin-left: 20px;
}

/* root element for tabs  */
.tabs { 
	list-style:none; 
	margin:0 !important; 
	padding:0;
	height:40px;
	border-bottom: 1px solid #1a1815;
}

/* single tab */
.tabs li { 
	float:left;	 
	text-indent:0;
	padding:0;
	margin:0 !important;
	list-style-image:none !important; 
}

/* link inside the tab. uses a background image */
.tabs a { 
	background: #444;
	border-right: 1px solid #1e201f;
	border-bottom: 1px solid #1a1815;
	font: 13px Helvetica, Arial, sans-serif;
	font-weight: bold;
	display:block;
	height: 40px;  
	line-height:40px;
	width: 160px;
	text-align:center;	
	text-decoration:none;
	color:#f3eede;
	padding:0px;
	margin:0px;	
	position:relative;
	top:1px;
}

.tabs a:active {
	outline:none;		
}

/* when mouse enters the tab move the background image */
.tabs a:hover {
	background: #222;	
	color:#da1b60;	
}

/* active tab uses a class name "current". it's highlight is also done by moving the background image. */
.tabs .current, .tabs .current:hover, .tabs li.current a {
	background: #1a1815;		
	cursor:default !important; 
	color:#da1b60 !important;
}

/* initially all panes are hidden */ 
.panes .pane {
	display:none;
}
.panel {
	background: #1a1815;
	padding: 20px;
}
.panel_avail {
	background: #1a1815;
	padding: 0;

}