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

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

/* link inside the tab. uses a background image */
ul.tabs a {
    font-size: 15px;
    display: block;
    width: 100%;
    color: #333;
    padding: 10px 15px;
    padding: 15px\0;
    margin: 0px;
    border-bottom: solid 1px #e4e4e4;
}

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

/* when mouse enters the tab move the background image */
ul.tabs a:hover { color:#333; background-color: #fff;
    border-bottom: solid 1px #d4d4d4;
    -webkit-box-shadow: 0 0 8px 0 rgba(0,0,0,0.2);
    box-shadow: 0 0 8px 0 rgba(0,0,0,0.2);
}

/* 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;
    background-color: #fff;
    -webkit-box-shadow: 0 0 8px 0 rgba(0,0,0,0.2);
    box-shadow: 0 0 8px 0 rgba(0,0,0,0.2);
}



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