#navbar {
    display:block;
    width:100%;
    height:50px;
    position:fixed;
    top:0;
    left:0;
    padding:15px;
    margin:0;
    background:#fff;
    z-index:999;
    box-shadow:0px 4px 8px 0px rgba(0,0,0,0.1);
}

#navbar .logo {
    width:auto;
    height:auto;
    max-width: 100%;
    max-height:50px;
}

#navbar ul {
    list-style: none;
    float:right;
    margin:15px 30px;
    padding:0;
}

#navbar ul li {
    display:inline-block;
}

#navbar ul li + li {
    margin-left:15px;
}

#navbar ul li a {
    color:#111;
    text-decoration: none;
}

#navbar ul li a:hover {
    text-decoration: underline;
}

#download {
    padding: 0;
    display: inline-block;
    vertical-align: bottom;
    margin-left:1px;
}

#download .btn.img-download {
    display:block;
    float:right;
    width:auto;
    background:#111;
    border:1px solid #111;
    color:#fff;
    padding:.45em .75em;
    text-decoration: none;
}

#download .btn.img-download:hover {
    background: #fff;
    color:#111;
}

/** Content Pages **/
body.content {
    background:#fff;
    color:#333;
}

body.content #navbar {
    position: static;
}

#content {
    text-align: center;
}

#content a {
    color:#111;
    text-decoration: none;
}

#content a:hover {
    text-decoration: underline;
}

#content .container {
    margin:0 auto;
    padding:20px;
    width:100%;
    max-width:1000px;
    text-align: left;
}