@import url("http://fonts.googleapis.com/css?family=Roboto+Slab:400,100,300,700");
.fixed-nav-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    width: 100%;
    height: 90px;
    background: rgba(255, 255, 255, 1);
    background: -webkit-gradient(left top, right top, color-stop(0%, rgba(255, 255, 255, 1)), color-stop(47%, rgba(246, 246, 246, 1)), color-stop(100%, rgba(237, 237, 237, 1)));
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 1) 0%, rgba(246, 246, 246, 1) 47%, rgba(237, 237, 237, 1) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(246, 246, 246, 1) 47%, rgba(237, 237, 237, 1) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ededed', GradientType=1);
}
.fixed-nav-bar .menu img {
    padding-top: 3px;
    
    
}

/* The element at the top of the page right after the fixed navigation bar
   MUST have sufficient top margin or else it will be covered by the bar */

.content {
    margin-top: 20px;
}

/* Example responsive navigation menu  */

.fixed-nav-bar li,
.fixed-nav-bar a {
    height: 50px;
    line-height: 50px;
}
.menu {
    width: 90%;
    max-width: 1080px;
    margin: 0 auto;
}
.menu a,
.menu a:visited {
    color: black;
    font-size: 15px;
    font-weight: bold;
    font: "Open Sans", sans-serif;
    margin-top: 8px;
}
.menu a:hover,
.menu a:target {
    color: #2fb3c1;
}
.menu-items {
    display: inline-block;
}
.sitename {
    display: inline-block;
    margin-right: 20px;
    margin-left: 10px;
}
a.sitename,
a:visited.sitename {
    color: black;
}
.menu-items li {
    display: inline-block;
    margin-right: 10px;
    margin-left: 10px;
}
.menu-items a {
    font-size: 17px;
    text-decoration: none;
}
.show,
.hide {
    display: none;
    padding-left: 15px;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center left;
    color: #dde1e2;
}
.menu ul {
    margin: -68px -100px 0px 190px;
}
.menu-items .line-separator {
    height: 1px;
    background: #717171;
    width: 75%;
    opacity: 0.3;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 0 20px black;
    display: none;
}
@media only screen and (max-width: 800px) {
    .menu {
        position: relative;
        width: 100%;
    }
    .sitename {
        position: absolute;
        top: 0;
        left: 15px;
        margin-left: 0px;
    }
    .menu-items {
        padding-top: 0px;
        position: absolute;
        display: none;
        right: 0px;
        width: 100%;
        top: 113.48px;
        background-color: #FFFFFF;
        box-shadow: 0px 0px 3px 0px rgba(50, 50, 50, 0.6);
    }
    .menu-items li {
        display: block;
        text-align: center;
    }
    .menu-items .line-separator {
        display: block;
    }
    .show,
    .hide {
        position: absolute;
        top: 0;
        right: 15px;
    }
    .show {
        display: inline-block;
    }
    .hide {
        display: none;
    }
    #menu:target .show {
        display: none;
    }
    #menu:target .hide,
    #menu:target .menu-items {
        display: inline-block;
    }
}
@media only screen and (max-width: 220px) {
    .sitename,
    .show,
    .hide {
        font-size: 14px;
    }
}
