html
{
    overflow-y: scroll;
}

body
{
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: Arial;
    font-size: 18px;
}

header
{
    background-color: #3b5998;
    padding: 10px;
    text-decoration: none;
    position: fixed;
    width: 100%;
    z-index: 1;
    -webkit-box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.4);
    box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.4);
}

#content
{
    background-color: #FFFFFF;
    padding: 52px 10px 10px 10px;
    position: relative;
    width: auto;
    height: 100%;
    -webkit-box-shadow: -10px 0px 9px 0px rgba(0, 0, 0, 0.4);
    box-shadow: -10px 0px 9px 0px rgba(0, 0, 0, 0.4);
}

#hamburger
{
    border: none!important;
    cursor: pointer;
    display: block;
    height: 24px;
    left: 80%;
    z-index: 9999;
    top: 25px;
    width: 50px;
    padding: 3px 4px 3px;
    position: relative;
    background: #4569b2;
    background: transparent;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4569b2', endColorstr='#4062a5', GradientType=0);
}

    /*
The white stripes in the hamburger button
*/
    #hamburger div
    {
        background-color: #075092;
        border: 1px solid #eee;
        border-radius: 2px 2px 2px 2px;
        height: 4px;
        margin-top: 3px;
        width: 58%;
    }

/*
The navigation container in the background
*/
nav
{
    display: none;
    opacity: 0;
    left: 0px;
    top: 0px;
    position: absolute;
    z-index: 0;
    width: 70%;
    height: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    overflow-x: hidden;
    overflow-y: scroll;
    background: white!important;
    background: -moz-linear-gradient(top, #3e3c3d 0%, #2d2c2d 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #3e3c3d), color-stop(100%, #2d2c2d));
    background: -webkit-linear-gradient(top, #3e3c3d 0%, #2d2c2d 100%);
    background: -o-linear-gradient(top, #3e3c3d 0%, #2d2c2d 100%);
    background: -ms-linear-gradient(top, #3e3c3d 0%, #2d2c2d 100%);
    background: linear-gradient(to bottom, #3e3c3d 0%, #2d2c2d 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#3e3c3d', endColorstr='#2d2c2d', GradientType=0);
}

    /*
Style the navigation menu
*/
    nav ul
    {
        list-style: none;
        margin: 0;
        width: 100%;
        background: #b31f2b;
        padding: 0;
    }

    nav li
    {
        position: relative;
        font-size: 17px;
        font-weight: bold;
        border-bottom: 1px solid white;
        border-top: 1px solid #444444;
        padding: 12px;
        margin-bottom: 0px;
    }

        nav li:nth-child(even)
        {
            background: #224091;
        }

        nav li ul li
        {
            font-size: 14px;
            border: none;
            color: grey!important;
            padding-left: 20px;
            padding: 9px 0px 0px 20px!important;
        }

        nav li a
        {
            color: #fff;
            border: medium none !important;
            text-decoration: none;
        }

/*
The Layer that will be layed over the content
so that the content is unclickable while menu is shown
*/
#contentLayer
{
    display: none;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 35%;
    z-index: 5;
}

#hamburger, #mobilemenu, #contentLayer
{
    display: none;
}
