﻿.simpleAccordionHeader
{
    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;
}
        
.simpleAccordionHeader:hover
{
    background: url(images/header_over.gif);
}
        
.simpleAccordionContent
{
    border:1px solid #9ac1c9;
    border-style: none solid solid;
    padding: 5px;
    overflow: hidden;
}
        
.simpleAccordionExpanderIcon
{
    background-image: url("images/icon_expander_down_blue.png");
    width: 16px;
    height: 16px;
    float:right;
}
        
.simpleAccordionExpanderIcon.collapsed
{
    background-image: url("images/icon_expander_right_blue.png");
}

.simpleAccordionExpanderIcon.loading
{
    background-image: url("images/ajax-loader_SmallSpinner_Green.gif");
}
        
.simpleAccordionContainer
{
    padding-bottom: 10px; /* Distance to next accordion or other control that follows */
}

.loadingContent
{
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url("images/ajax-loader_BigSpinner_Green.gif");
    height: 70px;
}