﻿div.simpleTabsHeader
{
    background: url("images/header.gif") repeat scroll 0 0 transparent;
    border: 1px solid #9AC1C9;
    cursor: pointer;
    font: 12px Verdana,Arial;
    font-weight: bold;
    padding: 6px 6px 8px;

    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}
   
div.simpleTabsHeader:hover
{
    background: url(images/header_over.gif);
}
        
div.tabContentContainer
{
    border:1px solid #9ac1c9;
    border-style: none solid solid;
    padding: 13px;
    overflow: hidden;
}
        
.simpleTabsExpanderIcon
{
    background-image: url("images/icon_expander_down_blue.png");
    width: 16px;
    height: 16px;
    float:right;
}
        
.simpleTabsExpanderIcon.collapsed
{
    background-image: url("images/icon_expander_right_blue.png");
}

.simpleTabsExpanderIcon.loading
{
    background-image: url("images/ajax-loader_SmallSpinner_Green.gif");
}

div.simpleTabsContainer
{
    padding-bottom: 10px; /* Distance to next accordion or other control that follows */
}

span.simpleTabsTab
{
    padding: 3px 5px 5px 5px;
    margin-left: 8px;
    margin-right: -3px;
    border: 1px solid #9ac1c9;
    background: #E3ECEE;
    cursor: pointer;

    font-size: 0.9em;
    font-weight: bold;


    /* Rounded corners */    
    -webkit-border-radius: 0px 0px 5px 5px;
    -moz-border-radius: 0px 0px 5px 5px;
    border-radius: 0px 0px 5px 5px;

    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none; /* Avoid text selection */
}

span.selectedTab
{
    padding-top: 4px;
    border-top: 0px none;
    background-color: #FFFFFF;
}

span.selectedTabWhenHoverOverTitle
{
    background-color: #D1DBDE;
}

div.tabContent
{
    display: none; /* Per default, all tab content divs must be hidden, and only shown explicitly for the selected tab */
}

.tabButtonContainer
{
    padding-top: 3px;
}