@charset "utf-8";
/* CSS Document */
/* ------------------------------------------------------------ *\
|* ------------------------------------------------------------ *|
|* Nav bar, search, and nav
|* ------------------------------------------------------------ *|
\* ------------------------------------------------------------ */
#navigation-bar {   
    position: relative;
    height:40px;
    padding-left: 40px;
}
#search {
    position: relative;
    float:right;
    width: 40px;
    height: 40px;
    margin-left: -40px;
}
#label {
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 20;
}
#label label {
    display: block;
    width: 40px;
    height: 40px;
    background: url("../images/search.png") 0 0;
    font-size: 0;
    color: rgba(0, 0, 0, 0);
    text-indent: -9999px;
    cursor: pointer;
}
#label label:hover {
    background: url("../images/search.png") -40px 0
}
#label.active label {
    background: url("../images/search.png") -40px 0
}
#input {
    position: absolute;
    top: 0;
    right: 60px;
    width:200px;
    height: 30px;
    z-index: 5;
    overflow: hidden;
}
#input input {
	display: block;
	position: absolute;
	top: 0;
	right: -200px;
	width: 200px;
	height: 100%;
	margin: 0;
	padding: 2px;
	border: 1px solid #999;
	background-color: #fff;
	color: #fff;
	font-size: 14px;
	z-index:99999;
/*	-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
		z-index:99999;
}
#input.focus {
 z-index:99999;
}
#input.focus input {
    left: 0;
	color:#333;
		z-index:99999;
}


