﻿
html, body {
    height: 100%;
}

#header {
    position: fixed;
    width: 100%;
    height: 65px; /* See #wrapper bottom value */
    background: #7C1415;
}
#header .container {
    margin-left: 0;
}
#header .container a { 
    padding-top: 5px;
}

#menu-toggle::after {
    font-family: "Glyphicons Halflings";
    content:"\e080"; /*chevron-right*/
}

#menu-toggle.menu-minimized::after {
    font-family: "Glyphicons Halflings";
    content:"\e079"; /*chevron-left*/
}


#content {
    position: absolute;
    padding-left: 0px;
    width: 100%;
    bottom: 0;
    top: 65px; /* compensate #top height */
}

/* Hide/rearrange for smaller screens */
@media screen and (max-width: 767px) {

}
