<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
/* root element for tabs  */
/* height was 30px */
/* width:41%; */
ul.css-tabs {
    margin:0 !important;
    padding:0;
    height:22px;
    border-bottom:1px solid #666;
}

/* single tab */
ul.css-tabs li {
    float:left;
    padding:0;
    margin:0;
    list-style-type:none;
}

/* link inside the tab */
/* height was 18px */
/* padding was 5px 30px = vert, horiz */
/* background-color was #efefef */
/* color was #777 */
ul.css-tabs a {
    float:left;
    font-size:13px;
    display:block;
    padding:3px 10px;
    text-decoration:none;
    border:1px solid #666;
    border-bottom:0px;
    height:14px; 
    background-color:#e0e0e0;
    color:#444;
    margin-right:2px;
    position:relative;
    top:1px;
    outline:0;
    -moz-border-radius:4px 4px 0 0;
}

/* color was #333 */
/* background-color was #f7f7f7 */
ul.css-tabs a:hover {
    background-color:#fff;
    color:#000;
}

/* selected tab */
/* background-color was #ddd */
/* border-bottom:1px solid #ddd; */
/* there was no font-weight */
ul.css-tabs a.current {
    background-color:#f4f4f4;
    border-bottom:1px solid #f4f4f4;
    color:#000;
    font-weight:bold;
    cursor:default;
}


/* tab pane */
/* background-color was #ddd */
/* min-height was 150px */
/* padding was 15px 20px vert horiz */
/* width:40%; */
/* min-height:150px; 87% works in Safari but not in FF */
/* Eric took the borders out. The border at the top remains OK.
    border:1px solid #666;
    border-width:0 0 0 0;
*/
.css-panes div {
    display:none;
    padding:5px 5px;
    background-color:#f4f4f4;
		height:87%;
}

</pre></body></html>