/* http://dhtmlkitchen.com/dhtml/ui/tabs/index.jsp */
/*               LEGEND               
| .content    -- the content div             |
| #tabs       -- the div that holds all tabs |
| .tab        -- an inactive tab             |
| .tabActive  -- an active tab               |
| .tabHover  -- an inactive tab onMouseOver  |
|___________________________________________*/
body {
    background: #ffd;
    color: black;
    margin: 0;
    padding: 0;
    height: 100%;
}

div#screen {
    position: absolute;
    top: 0px; 
    left: 0px;
    width: 100%;
}

.content {
    position: absolute;
    
    /* use margin-left instead of margin.
     * mac IE fuks up the child nodes with 
     * position relative. Position gets set to absolute via javascript 
     * in Mac IE, but if javascript is off, the page will 
     * look like the demo in the link below.
     *
     * For details on this bug, 
     * please see: http://climbtothestars.org/coding/ie5macbug/
     *
     */
      
    margin: 20px;
    top: 25px;
    font-family: Trebuchet MS, Arial, sans-serif;
    padding: 8px 12px 12px 12px;
    border: 1px solid #666;
    width: 90%;
    background: #fff;
    color: #000;
    border-top: 1px solid #999;
    border-left: 1px solid #666;
    z-index: 500;
}
  

.content .padder {
    height: 200px;
}

.tabs {
    font-size: 11px;
    line-height: 16px;
    position: absolute;
    top: 30px;
    left: 20px;
    white-space: nowrap;
    font-family: arial, helvetica, sans-serif;
    cursor: default !important;
    font-weight: 800 !important;
    white-space: nowrap;
    z-index: 10000;
    /* -Moz-User-Select: none;*/
}

.tab {
    border: 1px solid #347;
    padding: 0px 9px 0px 9px;
    background-color: #ECE9D8;
    color: #303036;
    z-index: 100;
    border-bottom-width: 0;
}

.tabHover {
    background-color: #eee;
    color: blue;
    z-index: 1200;
    border-bottom-width: 0;
}

.tabActive { 
    margin-top: 5px;
    padding: 0px 9px 2px 9px;
    color: #060610 ;
    background-color: #fff;
    z-index: 10000;
}

/** Rules for Tabs Clone option 
*
* Tabs on the bottom do not have a top border
*/
div.tabsClone .tab, div.tabsClone .tabActive {
    border-top-width: 0 !important;
    border-bottom-width: 1px !important;
    position: relative;
    top: -3px;
}

div.tabsClone .tabActive {
    position: relative;
    top: -4px;
}

a.removeTab {
    font-size: smaller;
    text-decoration: none;
}

