
/** Custom KnowledgeBase Header **/   
/** Gray background.  The bottom padding is to make gray background appear (for some reason background is white without the padding, odd) **/    
.kb-header  
{  
    background-color: #cccccc;  
    width: 100%;   
    padding-bottom: 50px;
}  
  
/** Knowledgebase Logo styles (needs 2px more padding at top, to make it look evenly spaced in header) **/
#kb-logo
{
     height: 35px;
     padding: 7px 5px 5px 5px;
}

/** DuraSpace 'U' logo styles (slightly more padding on left/right to push it away from scrollbar, and 2px at top to make it look evenly spaced in header) **/
#dura-logo
{
     height: 45px;
     padding: 2px 3px 0px 3px;
}

/** Clean up spacing in default 'Documentation' theme header **/  
#theme-header p     
{    
    padding: 0;    
    margin: 0;  
}    
  
/** Clean up spacing in default 'Documentation' theme sidebar **/        
#splitter-sidebar p     
{    
    padding: 0;    
    margin: 0;    
}    

/** Ensure that any panels (warning, info, note) in theme header are sized at 100% width **/
#theme-header .panelMacro 
{
     width: 100%;
}

/** Make the thin line under breadcrumb header a bright turquoise **/
.sectionbottom  
{  
    border-bottom-color: #A0F9F7;  
}  

/** Headings (H1 through H6) & Page title are all colored dark turquoise **/
#main h1, #main h2, #main h3, #main h4, #main h5, #main h6, #title-text, #title-text a
{
     color: #2E6173;
}

/** Make the license in the footer the same color as the breadcrumb header **/
#footer p.license, #footer p.license a
{
    background-color: #2E6173;
}

/** Hide "Child Pages" sections on each page. **/
#children-section
{
    display: none;
}

/** OLD FIXED HEADER STYLES (Don't work 100% right on Safari or Chrome)
.kb-header  
{  
    background-color: #cccccc;  
    width: 100%;  
    position: fixed;  
    z-index: 100;  
}  
#dura-logo  
{  
    height:45px;  
    border: 0;  
    position: fixed;  
    right: 17px;  
}  
#main  
{  
     padding-top: 80px;  
} **/


