/* root element for tabs  */
ul.tabs {
    list-style:none;
    margin: 0;
    padding: 10px 0 0 0;
    border-bottom: 2px solid #000;
    height:35px;
	clear: both;
}
	#artists ul.tabs { border: 0; width: 60%; height: 40px; line-height: 40px; padding: 0px 0 10px 0; margin: 0 auto; }

/* single tab */
ul.tabs li {
	width: 31%;
    float:left;
    text-indent:0;
    padding:0;
    margin:0 5px 0 0;
    list-style-image:none !important;
	font-family: 'Oswald', serif; 
}
	#artists ul.tabs li { width: 49%; margin: 0 2px 0 2px; }

/* link inside the tab. uses a background image */
ul.tabs a {
    font-size:20px;
	text-transform: uppercase;
    display:block;
    height: 35px;
    line-height:35px;
    text-align:center;
    text-decoration:none;
    color:#000;
    padding:0px;
    margin:0px;
    position:relative;
    top:-1px;
    border-top: 1px solid #000;
	border-left: 1px solid #000;
	border-right: 1px solid #000;
	background-color: #eee;
}
	#artists ul.tabs a { border: 0; height: 40px; line-height: 40px; border-bottom: 0; background-color: #000; color: #fff; top: 0; font-size: 25px; }

ul.tabs a:active {
    font-weight: bold;
    outline:none;
    color: #000;
	border-color: #000;
}

/* when mouse enters the tab move the background image */
ul.tabs a:hover {
    color:#fff;
	border-color: #000;
	background-color: #242424;
}
	#artists ul.tabs a:hover { background-color: #fff; color: #000; border: 0; font-size: 25px; }
	
/* 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 {
    color:#fff !important;
	font-weight: bold;
	border-color: #000;
	background-color: #000;
}
	#artists ul.tabs a.current, #artists ul.tabs a.current:hover, #artists ul.tabs li.current a { background-color: #fff; color: #000 !important; border: 0; font-size: 25px; }

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

/* tab pane styling */
.panes div.tab-item {
    display:none;
    padding:15px 0 0 0;
    height:auto;
}



