@charset "UTF-8";
/* CSS Document */
.sidenav {
    height: 100%;
    width: 100px;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: #ececec;
    overflow-x: hidden;
    padding-top: 20px;
}



.sidenav a {
    padding: 6px 8px 6px 16px;
    text-decoration: none;
    font-size: 14px;
    color: #cccccc; /*#818181*/
    display: block;
}


.sidenav a:hover {
    color: blue;
}


.main { /*not being used now; using backgroundDiv*/
    margin-left: 100px; /* Same as the width of the sidenav */
    padding: 0px 10px;
}

@media screen and (max-height: 450px) {
    .sidenav {padding-top: 15px;}
    .sidenav a {font-size: 18px;}
}