
/*
Header is relative so z-index: 1 guarantees always displayed on top
*/
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);
}

/*
using background color is important to cover the menu
position absolute isset to cover the whole viewport
*/
#content {
    background-color: #FFFFFF;
    padding: 1px 1px 1px 1px;
    position: relative;
    width: auto;
    /*min-height: 1000px;*/
    -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);
}

/*
the hamburger button with a little gradient effekt
*/
#hamburger {
    border: 1px solid #7E0C00;
    border-radius: 3px 3px 3px 3px;
    cursor: pointer;
    display: block;
    height: 24px;
    padding: 3px 4px 3px;
    position: relative;
    width: 25px;
    background: #006BB4;
    background: -moz-linear-gradient(top,  #006BB4 0%, #006BB4 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#006BB4), color-stop(100%,#006BB4));
    background: -webkit-linear-gradient(top,  #006BB4 0%,#006BB4 100%);
    background: -o-linear-gradient(top,  #006BB4 0%,#006BB4 100%);
    background: -ms-linear-gradient(top,  #006BB4 0%,#006BB4 100%);
    background: linear-gradient(to bottom,  #006BB4 0%,#006BB4 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#006BB4', endColorstr='#006BB4',GradientType=0 );
}

/*
The white stripes in the hamburger button
*/

/*this block should go in the styles.css file*/

     
       
        
/*
The navigation container in the background
*/
nav {
    left: 0px;
    top: 0px;
    position: fixed;
    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:auto ;
    background: #006BB4;
    background: -moz-linear-gradient(top,  #006BB4 0%, #006BB4 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#006BB4), color-stop(100%,#006BB4));
    background: -webkit-linear-gradient(top,  #006BB4 0%,#006BB4 100%);
    background: -o-linear-gradient(top,  #006BB4 0%,#006BB4 100%);
    background: -ms-linear-gradient(top,  #006BB4 0%,#006BB4 100%);
    background: linear-gradient(to bottom,  #006BB4 0%,#006BB4 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#006BB4', endColorstr='#006BB4',GradientType=0 );
    display:none;
}

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

nav li {
    position: relative;
    font-size: 1em;
    font-weight: bold;
    border-bottom: 1px solid #222222;
    border-top: 1px solid #444444;
    padding: 15px;
    background: #006BB4 !important;
} */
/*nav li a {
    color: #fff !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: 30%;
    z-index: 5;
    min-height: 1062px;
}
