﻿/* ACCORDION CONTROLS
----------------------------------------------------------*/
.accordion-head {
    margin-top: 5px;
    padding: 6px 0 0 20px;
    background-color: #CCC;
    font-size: 13px;
    font-family: Verdana, Sans-Serif;
    display: block;
    height: 23px;
    position: relative;
}
.accordion-close {
    position: absolute;
    right: 15px;
    top: 11px;
    width: 9px;
    height: 8px;
    background-image: url(accordion-close.gif);
}
.accordion-open {
    position: absolute;
    right: 15px;
    top: 11px;
    width: 9px;
    height: 8px;
    background-image: url(accordion-open.gif);
}
.accordion-content {
    display: none;
    border: 1px solid #CCC;
    border-top: none;
    padding: 20px 20px 10px 20px;
}
