.accordion-header {
    font-size: 16px;
    background: #ebebeb;
    margin: 5px 0 0 0;
    padding: 5px 20px;
    border: 1px solid #cccccc;
    cursor: pointer;
    color: #666666;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}
h2.accordion-header {font-size: 16px; margin-bottom: 0px;}

.active-header {
    -moz-border-radius: 5px 5px 0 0;
    -webkit-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0;
    background: url(/images/misc/active-header-white.gif) #eb9421;
    background-repeat: no-repeat;
    background-position: right 50%;
}

.active-header:hover {
    background: url(/images/misc/active-header-white.gif) #eb9421;
    background-repeat: no-repeat;
    background-position: right 50%;
  color: #FFF;
}

.inactive-header {
    background: url(/images/misc/inactive-header-white.gif) #a7c1e3;
    background-repeat: no-repeat;
    background-position: right 50%;
}

.inactive-header:hover {
    background: url(/images/misc/inactive-header-white.gif) #eb9421;
    background-repeat: no-repeat;
    background-position: right 50%;
  color: #FFF;
}

.accordion-content {
    display: none;
    padding: 20px;
  padding-bottom: 5px;
    background: #ffffff;
    border: 1px solid #cccccc;
    border-top: 0;
    -moz-border-radius: 0 0 5px 5px;
    -webkit-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
}