@charset "utf-8";
/* CSS Document */

#search {
	height: 47px;
	position: relative;
	right: 0px;
	text-align: left;
	padding-top: 40px;
	padding-bottom: 0;
	padding-left: 0;
	float: none;
}

#search label {
	display: none;
}
#search button {
	display: none;
}

#search input[type="text"] {
	border: 1px solid #d1d1d1;
	font: bold 12px Arial,Helvetica,Sans-serif;
	color: #bebebe;
	width: 300px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	text-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
	-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15) inset;
	-moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15) inset;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15) inset;

	padding-top: 6px;
	padding-right: 15px;
	padding-bottom: 5px;
	padding-left: 30px;
	background-color: #F4F4F4;
	background-image: url(../../images/search_icon_sprite.png);
	background-repeat: no-repeat;
	background-position: 2% 6px;
}
#search input[type="text"]:focus { 
	width: 300px; 
	color: #4c4c4c;
	background-color: #FFF;
	background-position: 2% -17px;
}

#autocomplete_results {
	background: #F4F4F4;
	position:absolute;
	left:215px;
	top:350px;	
	border: 1px solid #d1d1d1;
	font: bold 12px Arial,Helvetica,Sans-serif;
	
	text-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
	-webkit-border-radius:0 0 15px 15px;
	-moz-border-radius: 0 0 15px 15px;
	border-radius: 0 0 15px 15px;
	text-align: left;	
	width:300px !important;

	
	
}
.ui-autocomplete-category {
	margin: 2px;
	line-height: 2;
	padding-top: 2px;
	padding-right: 5px;
	padding-bottom: 2px;
	padding-left: 5px;
	font: 12px Arial,Helvetica,Sans-serif;
	font-weight: bold;
	}
#autocomplete_results li a {
	cursor:pointer;
	display:block;
	text-decoration:none;
	color: #bebebe;
	padding:2px 10px;
}
#autocomplete_results li a:hover {
	opacity: .5;
}


