/*
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:715px;
}

/* wraps the tab title */
.tabtitle {

}

/* wraps the tab content */
.tabcontent {

}


/*###########################################################################*/
/* 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:715px;
}

/* unordered list <ul> with tab titles */
.zentabs_ul {
margin:0px;
padding:0px;
padding:10px;
padding-left:5px;
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;
}

/* 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: url(../images/taber_bg.png) no-repeat;
border:1px solid #3a3a3a;
border-bottom:0px;
font-family:Arial;
font-size:11px;
font-weight:normal;
color:#cccccc;
-moz-border-radius-topleft: 5px;
-moz-border-radius-topright: 5px;
}

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

/* wraps all tab content (after <ul>) */
.tabcontent_wrapper {
width:715px;
border:0px 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;
}