/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Jun 25, 2015, 2:59:24 PM
    Author     : jackleen
*/


.accordion {
    width: 100%;
    margin: 1em 0em;
}
 
.accordion h3 {
    background: url('../../images/collapse.gif') no-repeat right center #ffffff;
    border-bottom: 2px solid #f7f7f7;
    color: #0059a3;
    display: block;
    //font-size: 1.5em;
    //font-weight: bold;
    margin: -1px 0 0 !important;
    padding: 0.5em 1em;
    -moz-transition: all 0.3s ease-in-out 0s;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}
 
.accordion p {
    font-size: 1.2em;
    line-height: 1.4em;
    padding: 10px;
}
 
.accordion h3.active {
    background: url('../../images/expand.gif') no-repeat right center #ffffff;
    border-bottom: 0px;
    color:#003f74;
}
.accordion h3.active + div{border-bottom: 2px solid #f7f7f7;}
 
.accordion h3:hover {
    background-color: #ffffff;
    
    color:#003f74;
    cursor: pointer;
}
 

.accordion div {
    padding: .5em .25em;
}