/* ------------------------------------------------------------ *\
|* ------------------------------------------------------------ *|
|* Nav bar, search, and nav
|* ------------------------------------------------------------ *|
\* ------------------------------------------------------------ */
#navigation-bar {
    position: relative;
    //height: 60px;
    padding-bottom: 10px;
	float:left;
}
#search {
    position: relative;
    float: left;
    width: 60px;
    //height: 60px;
    //margin-left: -592% !important;
}
#label {
    width: 30px;
    height: 30px;
    position: relative;
    z-index: 20;
}
#label label {
    display: block;
    width: 30px;
    height: 30px;
    background: url("../img/search.png") -30px 0;
    font-size: 0;
    color: rgba(0, 0, 0, 0);
    text-indent: -9999px;
    cursor: pointer;
}
#label label:hover {
    background: url("../img/search.png") 0 0 !important;
}
#label.active label {
    background: url("../img/search.png") 0 0 !important;
}
#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: -450px;
    width: 145px;
    height: 100%;
    margin: 0;
    padding: 0 10px;
    border: 1px;
	border-style:solid;
	border-color:#23688b;
    background-color: #fff;
    color: #23688b !important;
    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: 35px;
	direction:rtl;
	text-align:right;
    -webkit-transition: left 0.3s;
    -moz-transition: left 0.3s;
    -ms-transition: left 0.3s;
    -o-transition: left 0.3s;
    transition: left 0.3s;
}
