#accordion-container {
    /*font-size: 13px;*/
    /*background: #ffffff;*/
    /*padding: 5px 10px 10px 10px;*/
    /*border: 1px solid #cccccc;*/
    /*-moz-border-radius: 5px;*/
    /*-webkit-border-radius: 5px;*/
    /*border-radius: 5px;*/
    /*-moz-box-shadow: 0 5px 15px #cccccc;*/
    /*-webkit-box-shadow: 0 5px 15px #cccccc;*/
    /*box-shadow: 0 5px 15px #cccccc;*/
}

.accordion-header {
    font-size: 14px;
    /*background: #ebebeb;*/
    margin: 10px 0 0 0;
    padding: 0px 10px;
    /*border: 1px solid #cccccc;*/
    cursor: pointer;
    /*color: #666666;*/
    /*-moz-border-radius: 5px;*/
    /*-webkit-border-radius: 5px;*/
    /*border-radius: 5px;*/
    line-height: 22px;
    font-weight: bolder;
}
.inactive-header:hover {
    color: blue;
}

.active-header {
/*    -moz-border-radius: 5px 5px 0 0;
    -webkit-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0;*/
    color: #2878a0;
}

.active-header:hover {
    color: #DF4C20;
}

.inactive-header {
    color: #2878a0;
}

.inactive-header:hover {
    color: #DF4C20;
}

.accordion-content {
    display: none;
    padding: 10px 10px 0px 10px;
    /*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;*/
    font-size: 14px;
    margin-top: -15px;
}