/*

    basic-page_h2-spacing.css
    
    This extends basic-page.css and may be used to add "Navigator page" spacing/lines above h2 in the #content div.
    
    first-section class removes the line.
    
    mimic-h2-spacing class adds the spacing and line to non-h2 elements.
    
    Examples:
    /content/main/special-disability-fund/procedure.jsp

*/

.basic-page #content h2 {
    border-top: 1px solid #cccccc;
    padding-top: 1em;
}

.basic-page #content h2.first-section {
    border-top: 0;
    padding-top: 0;
}

.basic-page #content .mimic-h2-spacing {
    margin-top: 1.5em;
    border-top: 1px solid #cccccc;
    padding-top: 1em;
}

.basic-page #content hr {
    border-top: 1px solid #cccccc;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    margin: 2.5em 0;
}