html,body {
    height:100%;
    padding:0;
    margin:0;
}

.fill iframe {
    /*
        https://github.com/maxcellent/javadoc.io/issues/51
        float: left; is needed here to remove the vertical scrollbar in Firefox
        https://stackoverflow.com/questions/12989931/body-height-100-displaying-vertical-scrollbar
        https://stackoverflow.com/questions/12989931/body-height-100-displaying-vertical-scrollbar/22166728#22166728
    */
    float: left;
    width: 100%;
    height: 100%;
    border: 0;
}

/*
https://stackoverflow.com/questions/19227496/scrollable-menu-with-bootstrap-menu-expanding-its-container-when-it-should-not
*/
.scrollable-menu {
    height: auto;
    max-height: 600px;
    overflow-x: hidden;
}