/* CSS Document */


.sb-search-input {
	position: absolute;
	top: 10px;
	right: 55px;
	border: none;
	outline: none;
	background: #fff;
	width: 330px;
	height: 40px;
	margin: 0;
	z-index: 10;
  line-height:40px;
	font-family: inherit;
	font-size: 16px;font-weight:400;
	color: #000;
	padding-left:10px;
	border-radius:2px;
	border:#dfdfdf 1px solid
}

.sb-search-input::-webkit-input-placeholder {
	color: #999;
}

.sb-search-input:-moz-placeholder {
	color: #999;
}

.sb-search-input::-moz-placeholder {
	color: #999;
}

.sb-search-input:-ms-input-placeholder {
	color: #999;
}

.sb-icon-search,
.sb-search-submit  {
	width: 40px;
	height: 40px;
	display: block;
	position: absolute;
	right: 10px;
	top: 10px;
	padding: 0;
	margin: 0;
	line-height: 38px;
	text-align: center;
	cursor: pointer;
	border-radius:0
}

.sb-search-submit {
	background: #fff; /* IE needs this */
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; /* IE 8 */
    filter: alpha(opacity=0); /* IE 5-7 */
    opacity: 0;
	color: transparent;
	border: #000 1px solid;
	outline: none;
	z-index: -1;
}

.sb-icon-search {
	color: #fff;
	/*background: #128a0b;*/
	z-index: 90;
	font-size: 24px;
	font-family: 'FontAwesome';
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	-webkit-font-smoothing: antialiased;
	
}
.sb-icon-search:hover{background:#FFF; color: #cb3e4a;}
.sb-icon-search:before {
	content: "\f002";
}

/* Open state */
.sb-search.sb-search-open,
.no-js .sb-search {
	width: 100%;
}

.sb-search.sb-search-open .sb-icon-search,
.no-js .sb-search .sb-icon-search {
	background: #ccc;
	color: #fff;
	z-index: 11;
}

.sb-search.sb-search-open .sb-search-submit,
.no-js .sb-search .sb-search-submit {
	z-index: 90;
}

