/*
 * $Id:$
 * 
 * A CSS file for laying out a tabbed layout
 */

#tab-container {
    position: absolute;
    bottom: 4px;
}

#tab-container .triangle {
    width: 24px;
    height: 25px;
    float: right;
    background-image: url(../images/layout/backgrounds/triangle.png);
    background-repeat: no-repeat;
    margin: 0px 3px 2px 0px;

}

#tab-container .options  {
    width: 120px;
    float: right;
    background-color: #7F7F7F;
    text-align: center;
    padding: 2px;
    margin: 0px 3px 6px 0px;
    color: white;
    clear: both;
}

#tab-container .options a {
    color: white;
    font-weight: normal;
}

#tab-container .tabs {
    clear: both;
}

#tab-container .tab-spacer {
    float: left;
    height: 25px;
}

#tab-container .tab {
    float: left;
}

#tab-container .tab a {
    padding-top: 5px;
    color: black;
    width: 120px;
    text-align: center;
}

#tab-container .tab * {
    float: left;
    margin-right: 3px;
}


#tab-container .tab .selected {
    background-color: white;
    height: 25px;
}


#tab-container .tab .unselected {
    background-color: #8EB4E3;
    height: 25px;
}