/* 共用設定 root element for tabs  */
ul.tabs { margin: 0 !important; padding: 0;}

/* single tab */
ul.tabs li {
    padding:0;
    margin:0;
}

/* link inside the tab. uses a background image */
ul.tabs a {
    font-size: 15px;
    display: block;
    width: 100%;
    color: #666;
}

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

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

/* 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 {
    cursor: default !important;
    color: #333 !important;
}



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