/* ------------------------------------------------------------ *\
|* ------------------------------------------------------------ *|
|* Nav bar, search, and nav
|* ------------------------------------------------------------ *|
\* ------------------------------------------------------------ */
#navigation-bar {
    position: relative;
    
    padding-left: 60px;
}
#search {
    position: relative;
    float: left;
    
    margin-top: 8px;
}
#label {
    
    position: relative;
    z-index: 20;
}
#label label {
    display: block;
    width: 20px;
    height: 20px;
    background: url("../img/search.png") 0 0 ;
    font-size: 0;
    color: rgba(0, 0, 0, 0);
    text-indent: -9999px;
    cursor: pointer;
}
#label label:hover {
    background: url("../img/search1.png");
}
#label.active label {
    background: url("../img/search1.png") ;
}
#input {
    position: absolute;
    top: 0;
    left: 20px;
    width:100px;
    height: 30px;
    z-index: 5;
    overflow: hidden;
}
#input input {
    display: block;
    position: absolute;
    top: 0;
    left: -450px;
    
    height: 100%;
    margin: 0;
    padding: 0 10px;
    border: 1px solid black;
    background-color: ;
    color: #000;
    font-size: 14px;
    -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;
}
