/* Accordion Styles */

.accordion {
    position: relative;
}

h4.panel-title {
    display: block;
}

h4.panel-title:hover {
    text-decoration: none;
}

h4.panel-title {
    padding: 12px 40px 12px 20px;
    color: #2E5D91;
    font-size: 16px;
    border-radius: 5px 5px 5px 5px;
    margin: 0px 0px 8px 0px;
    transition: all 0.3s ease-out;
    position: relative;
    background: rgba(51, 102, 153, 0.12);
    font-weight: 400;
}

h4.panel-title a:after {
    content: "\f055";
    font-family: 'fontawesome';
    position: absolute;
    top: 50%;
    right: 30px;
    -webkit-transform: translate(50%, -50%);
    -moz-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
    color: #2E5D91;
    width: 25px;
    height: 25px;
    font-size: 20px;
    line-height: 25px;
    text-align: center;
    border-radius: 3px;
}

h4.panel-title a.active:after {
    content: "\f056";
}


h4.panel-title a { 
    color: #2E5D91 !important; 
    font-weight: 700;
}

.panel-title a em {
    float: right;
    margin-right: 20px;
}

.panel-title h4 a em span { display: none; }

.panel-content {
    padding: 12px;
}

.panel-content:after {
    content: '';
    display: table;
    clear: both;
}