/*
CSS for ZenTabs Tabbed Menu
http://zenverse.net/zentabs-tabbed-menu/
*/

/*##################################*/
/* javascript disabled (not loaded) */
/*##################################*/

/* whole tabbed menu wrapper */
.zentabs {

}

/* wraps a set of tab (title and content) */
.onetab {
width:275px;
}

/* wraps the tab title */
.tabtitle {

}

/* wraps the tab content */
.tabcontent {
	font-size:12px;
}

.tabcontent ul {
	padding: 7px 0px 0px 20px;
	margin: 0;
}

.tabcontent ul li {
	padding-bottom:8px;
}


/*###########################################################################*/
/* script loaded (live)                                                      */
/* see how the structure changes at http://zenverse.net/zentabs-tabbed-menu/ */
/*###########################################################################*/

/* tabbed menu wrapper (.zentabs is now changed to .zentabs_live)*/
.zentabs_live {
width:275px;
}

/* unordered list <ul> with tab titles */
.zentabs_ul {
margin:0px;
padding:0px;
padding:10px;
padding-left:0px;
padding-bottom:5px;
border-bottom:1px solid #e1e1e1;
margin-bottom:0px;
}

/* list item for the unordered list <ul> */
.zentabs_ul li {
margin:0px;
padding:0px;
display:inline;
margin-right:2px;
width:100px;
}

/* clickable tab titles */
.zentabs_ul li a,.zentabs_ul li a:link,.zentabs_ul li a:visited {
padding:7px;
padding-left:9px;
padding-right:9px;
background:#B9B9B9;
border:1px solid #B9B9B9;
border-bottom:0px;
font-family:tahoma;
font-size:11px;
font-weight:bold;
color:#fff;
background-image:none;
}

.zentabs_ul li a:hover {
background:#AAAAAA;
}

/* current selected tab titles */
.zentabs_ul li a.current,.zentabs_ul li a.current:link,.zentabs_ul li a.current:visited {
background:#fff;
color:#222222;
border:1px solid #e1e1e1;
border-bottom:0px;
}

/* wraps all tab content (after <ul>) */
.tabcontent_wrapper {
width:275px;
border:1px solid #e1e1e1;
border-top:0px solid #e1e1e1;
}

/* wraps a single tab content (inside .tabcontent_wrapper) */
.zentabs_live .tabcontent {
line-height:17px;
padding:5px;
background:#fff;
}