/* 
    Document   : benefits_accordion
    Created on : Dec 6, 2016, 1:50:22 PM
    Author     : The Next Coders
    Description:
    Purpose of the stylesheet is to manage the accordion on Career Page.
*/

/* 
   TODO customize this sample style
   Syntax recommendation http://www.w3.org/TR/REC-CSS2/
*/

root { 
    display: block;
}
@import url('//netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css');
.accordion-toggle:after {
    font-family: 'FontAwesome';
    content: "\f078";    
    float: right;
}
.accordion-opened .accordion-toggle:after {    
    content: "\f054";    
}
