/* FAQ page */
.faq_list {
    padding: 0 0 50px 0;
}

.faq_list h4.bord {
    margin: 0;
}

.faq_list .filter {
    float: left;
    width: 100%;
    border-bottom: 1px solid #efefef;
    margin: 10px 0 50px 0;
}

.faq_list .filter li {
    float: left;
    padding-right: 2px;
    font-style: italic;
}

.faq_list .filter li a {
    color: #7e7e7e;
    background: #efefef;
    padding: 5px 10px;
    display: block;
}

.faq_list .filter li a:hover {
    background: #e4e2e2;
    color: #626363;
}

.faq_list .filter li.active a, .faq_list .filter li span {
    color: #fff;
    background: #22b222;
    padding: 5px 10px;
    display: block;
}

.faq_list #faq {
    clear: both;
}

.faq_list #faq li {
    position: relative;
}

.faq_list #faq li .question:after {
    content: '';
    z-index: 2;
    cursor: pointer;
    display: block;
    width: 24px;
    height: 24px;
    position: absolute;
    top: 14px;
    right: 18px;
    background: url(../img/closed.png) no-repeat;
}

.faq_list #faq li.simpleFAQShowing .question:after {
    background: #22b222 url(../img/open.png) no-repeat;
    -webkit-border-radius: 13px;
    -moz-border-radius: 13px;
    border-radius: 13px;
    behavior: url(../css/PIE.htc);
}

.faq_list #faq .question {
    margin: 20px 0 0 0;
    border: 1px solid #d3d3d3;
    min-height: 50px;
    position: relative;
    padding: 13px 0 0 55px;
    font-size: 14px;
    font-weight: bold;
    color: #434242;
    background: #ededed;
    background: -webkit-gradient(linear, 0 0, 0 bottom, from(#f9f9f9), to(#ededed));
    background: -webkit-linear-gradient(#f9f9f9, #ededed);
    background: -moz-linear-gradient(#f9f9f9, #ededed);
    background: -ms-linear-gradient(#f9f9f9, #ededed);
    background: -o-linear-gradient(#f9f9f9, #ededed);
    background: linear-gradient(#f9f9f9, #ededed);
    -pie-background: linear-gradient(#f9f9f9, #ededed);
    behavior: url(../css/PIE.htc);
}

.faq_list #faq .question:before {
    content: 'Q:';
    position: absolute;
    top: 8px;
    left: 16px;
    color: #cccbcb;
    font-size: 22px;
    font-weight: bold;
}

.faq_list #faq .answer {
    border: 1px solid #e7e7e7;
    position: relative;
    border-top: none;
    padding: 27px 35px 27px 55px;
}

.faq_list #faq .answer:before {
    content: 'A:';
    position: absolute;
    top: 27px;
    left: 16px;
    color: #cccbcb;
    font-size: 22px;
    font-weight: bold;
}

.faq_list #faq .answer p {
    padding-bottom: 23px;
}
.faq_list li, .faq_list ul{
    list-style: none;
}