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

/* single tab */
ul.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 */
ul.tabs a { 
	background: url(../assets/procenter/tab-off.png) no-repeat;
	font-size:11px;
	display:block;
	height: 35px;  
	line-height:33px;
	width: 139px;
	text-align:center;	
	text-decoration:none;
	color:#494738;
	padding:0px;
	margin:0px;	
	position:relative;
	font-size: 13px;
}

ul.tabs a.last{
	width: 157px;
	text-indent: -15px;
}

ul.tabs a:active {
	outline:none;		
}

/* when mouse enters the tab move the background image */
ul.tabs a:hover {
		background: url(../assets/procenter/tab-hover.png) no-repeat;	
		position: relative;
		top: -1px;
}

/* active tab uses a class name "current". its highlight is also done by moving the background image. */
ul.tabs a.current, ul.tabs a.current:hover, ul.tabs li.current a {
	background: url(../assets/procenter/tab-active.png) no-repeat;	
	position: relative;
	top: -3px;
	padding-top: 5px;
	height: 32px;
	cursor:default !important; 
	color:#128ee5 !important;
	font-weight: bold;
	font-size: 12px;
}

/* initially all panes are hidden */ 
.panes .pane {
	display:none;		
}


.channel-panes{
	background: #fff;
	
	border-top: none !important;
	border: 1px solid #a2a494;	
	position: relative;
	top: -3px;
	padding: 48px 0px 0px 16px;
}

