.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    background-color: #f5f5f5;
    overflow-x: hidden;
    padding-top: 60px;
}

.sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    color: rgb(66, 82, 110);
    display: block;
    font-weight: bold;
}

.sidenav a:hover, .offcanvas a:focus{
    color: black;
}

.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 3rem;
    margin-left: 50px;
}

#main {
    transition: margin-left .5s;
    padding: 16px;
}

/*Nav toolbar css*/
.navbar{
    overflow: hidden;
    display: block;
    width: 100%;
    height: 6.5rem;
    background: #fff;
    z-index: 99;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    position: fixed;
    top: 0;
    width: 100%;
    margin-top: 0;
}

.navbar > .container {
    width: 100%;
}

.navbar-list {
    list-style: none;
    margin-bottom: 0;
}

.navbar-item {
    position: relative;
    float: left;
    margin-bottom: 0;
}

.navbar-link {
    text-transform: uppercase;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: .2rem;
    margin-right: 35px;
    text-decoration: none;
    line-height: 6.5rem;
    color: #222;
}

.navbar-link.active {
    color: #33C3F0;
}

.content {
    margin-top: 120px;
    margin-bottom: 60px;
}

hr {
    border: 1px solid #fa0;
}

a {
    text-decoration: none;
}

.prettify-pre-block {
    background: #F1F1F1;
    border: 1px solid #E1E1E1;
    border-radius: 4px;
    height: 300px;
    word-wrap: break-word;
    overflow: scroll;
    overflow-x: hidden;
}

code{
    border: none;
}

input[type=checkbox] {
    position: relative;
    cursor: pointer;
}
input[type=checkbox]:before {
    content: "";
    display: block;
    position: absolute;
    width: 15px;
    height: 15px;
    top: 0;
    left: 0;
    border: 1px solid black;
    background-color: white;
}
input[type=checkbox]:checked:after {
    content: "";
    display: block;
    width: 5px;
    height: 10px;
    border: solid black;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 2px;
    left: 5px;
}
.faq-section{
    margin: 0 0 30px 0;
    position: relative;
}

.faq-section .question{
    font-size: 1em;
    background: #eee;
    display: block;
    padding: 7px 10px;
    font-weight: bold;
    border: 1px solid #ddd;
    border-left: 3px solid #888;
}

.faq-section .answer{
    font-size: 1em;
    background: #ffffff;
    display: block;
    padding:  17px 10px 17px 10px;
    border: 1px solid #ddd;
}

footer{
    display: block;
    width: 100%;
    height: 5.5rem;
    background: #fff;
    border-top: 1px solid #eee;
}
footer > .container{
    padding: 10px 0;
}
img.u-max-full-width{
    margin: 25px 0 25px 0;
}