/* ------------------------------------------------------------ *\
|* ------------------------------------------------------------ *|
|* Nav bar, search, and nav
|* ------------------------------------------------------------ *|
\* ------------------------------------------------------------ */
#navigation-bar {
    position: relative;
    height: 30px;
    /*padding-left: 50px;*/
}
#search {
    position: relative;
    float: left;
    width: 30px;
    height: 30px;
    margin-left: 17px;
    z-index: 1;
}
#label {
    width: 30px;
    height: 30px;
    position: relative;
    z-index: 20;
}
#label label {
    display: block;
    width: 30px;
    height: 30px;
    background: url("../images/search.png") 0 0;
    font-size: 0;
    color: rgba(0, 0, 0, 0);
    text-indent: -9999px;
    cursor: pointer;
    z-index: 0;
}
#label label:hover {
    background: url("../images/search.png") -30px 0
}
#label.active label {
    background: url("../images/search.png") -30px 0
}
#input {
    position: absolute;
    top: 0;
    left: 30px;
    width: 200px;
    height: 30px;
    z-index: 5;
    overflow: hidden;
}
#input input {
    display: block;
    position: absolute;
    top: 0;
    left: -200px;
    width: 200px;
    height: 100%;
    margin: 0;
    padding: 0 10px;
    border: none;
    background-color: #f7f7f7;
    color: #333333;
    font-size: 1em;
    font-weight: 300;
    -webkit-backface-visibility: none;
    -moz-backface-visibility: none;
    -ms-backface-visibility: none;
    backface-visibility: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -webkit-transition: left 0;
    -moz-transition: left 0;
    -ms-transition: left 0;
    -o-transition: left 0;
    transition: left 0;
}
#input input:focus {
    outline: none
}
#input.focus {
    z-index: 20
}
#input.focus input {
    left: 0;
    -webkit-transition: left 0.3s;
    -moz-transition: left 0.3s;
    -ms-transition: left 0.3s;
    -o-transition: left 0.3s;
    transition: left 0.3s;
}
/*nav {
    width: 100%;
    float: left;
    padding-left: 10px;
    position: relative;
    z-index: 10;
}
nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}*/
#navigation-bar > nav li {
    display: inline-block;
    height: 30px;
    line-height: 30px;
    font-family: "Source Sans Pro", sans-serif;
    text-transform: uppercase;
    color: #2d2c2c;
    font-weight: 600;
    font-size: 0.8em;
}
#navigation-bar > nav a {
    display: block;
    padding: 0 5px;
    color: #c8c8c8;
}

@media (max-width: 345px) {
    #navigation-bar > nav a {
        display: block;
        padding: 0 0px;
        color: #c8c8c8;
    }

}

#navigation-bar > nav a:hover {
    color: #3296c8
}