body{
    background: #333;
    padding:0px;
    margin: 0;
    font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, sans-serif;
    overflow-y: scroll;
}

#top-menu{
    background: #000;
    font-size: 1em;
    color:#fff;
    z-index: 1;
    width:100%;
    height:45px;
    position: fixed;
    top: 0;
    -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow:    0px 2px 5px 0px rgba(0, 0, 0, 0.3);
    box-shadow:         0px 2px 5px 0px rgba(0, 0, 0, 0.3);

    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

#top-menu.headroom--top {
    transition: transform 200ms linear;
}

#top-menu.headroom--pinned {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

#top-menu.headroom--unpinned {
    -webkit-transform: translateY(-110%);
    -ms-transform: translateY(-110%);
    transform: translateY(-110%);
}

#top-menu .menu-container{
    margin: 0 10px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
    align-items: center;
}

#status{
    margin: 0 5%;
}

#main-menu{
    margin: 0 5%;
}

#main-menu ul{
    padding: 0;
    margin: 0 5px;
}

#main-menu li{
    padding: 0px;
    margin: 0;
    display: block;
    float: left;
}

#main-menu li:after{
    content: "|";
    margin: 0 10px;
}

#main-menu li:last-child:after{
    content: "";
}

#main-menu li a{
    color: #fff;
    text-decoration: none;
}

#main-menu li a:hover{
    text-decoration: underline;
}

#album1{
    background: #fff;
    padding: 0px;
    margin: 40px 0 0 0;
    font-size: 0;
}
#album1 img{
    margin: 0;
    padding: 1px;
    display: inline-block;
}

a img {
    boder: none;
}
.content{
    margin: 20px 5% 0 5%;
}

.content p{
    color: #ccc;
}

h2{
    font-size: 2em;
    color: #fff;
}
