/* ------------------------------------------------------------ *\
|* ------------------------------------------------------------ *|
|* Nav bar, search, and nav
|* ------------------------------------------------------------ *|
\* ------------------------------------------------------------ */
#navigation-bar {
    position: relative;
    height: 40px;
    padding-left: 60px;
}
#search {
    position: relative;
    float: left;
    width: 65px;
    height: 40px;
    margin-left: -60px;
}
#label {
    width: 65px;
    height: 40px;
    position: relative;
    z-index: 20;
	background:no-repeat;
}
#label label {
    display: block;
    width: 65px;
    height: 40px;
    background: url(../images/btn-search.jpg) 0 0;
    font-size: 0;
    color: rgba(0, 0, 0, 0);
    cursor: pointer;
}

#input {
    position: absolute;
    top: 0;
    left: 60px;
    width: 450px;
    height: 40px;
    z-index: 5;
    overflow: hidden;
}
#input input {
    display: block;
    position: absolute;
    top: 0;
    left: -450px;
    width: 450px;
    height: 40px;
    margin: 0;
    padding: 0 10px;
    border: none;
    background-color: #fff;
    color: #000;
    font-size: 18px;
    -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;
}
