.searchbar {
	border-radius: 3px;
	border: 0px solid #999;
	
	width:70%;
	max-width:800px;
	min-width:350px;
	padding:5px;
	padding-left:10px;
	padding-right:10px;
	
	z-index:99999999999;
}
.searchbar-option {
	cursor:pointer;
}
.searchbar-option-text {
	font-family: 'MontserratR', sans-serif;
	font-size:12px;
	font-weight:normal;
	color:#EEE;
}
.search-textfield {
	height:50px;
	
	font-family: 'MontserratR', sans-serif;
	font-size:17px;
	font-weight:normal;
	color:#222;
	text-align:left;
	
	width:100%;
	box-sizing: border-box;
     -webkit-box-sizing:border-box;
     -moz-box-sizing: border-box;
	 
	
	border:none;
	border-top-left-radius: 3px;
	border-bottom-left-radius: 3px;
	border-top-right-radius: 0px;
	border-bottom-right-radius: 0px;
	
	background-image:url(../images/searchbar/search-button.png);
	background-repeat:no-repeat;
	background-position:12px 11px;
	padding-left:55px;
	
}
.search-textfield:focus {
	background-image:url(../images/searchbar/search-button-blue.png);
}
::-webkit-input-placeholder { color:#AAA; }
::-moz-placeholder { color:#AAA; } /* firefox 19+ */
:-ms-input-placeholder { color:#AAA; } /* ie */
input:-moz-placeholder { color:#AAA; }

.button-search {
	height:49px;
	width:100px;
	
	
	margin-left:0px;
	margin-top:1px;
	border:1px solid #999;
	border-top-right-radius: 3px;
	border-bottom-right-radius: 3px;
	
	background:rgba(0,0,20,0.3);
	cursor:pointer;
	
	background-image:url(../images/searchbar/search-button-w.png);
	background-repeat:no-repeat;
	background-position:35px 11px;
	
	
	
}
.button-search:hover {
	background:#0093D7;
	border:1px solid #0093D7;
	background-image:url(../images/searchbar/search-button-w.png);
	background-repeat:no-repeat;
	background-position:35px 11px;
}
.button-search:active {
	background:#F00;
	border:1px solid #F00;
	background-image:url(../images/searchbar/search-button-w.png);
	background-repeat:no-repeat;
	background-position:35px 11px;
}

/* --------- SUGGESTION DIV --------------------------------- */

.search-suggestion {
	background:#FFF;
	width:70%;
	max-width:800px;
	min-width:350px;
	border:1px solid #CCC;
	border-bottom-left-radius:3px;
	border-bottom-right-radius:3px;
	display:none;
	position:relative;
	color:#222;
}
.search-suggestion-table {
	background:#F4F4F4;
	cursor:pointer;
	padding:5px;
	border-radius:3px;
	margin-top:2px;
	margin-bottom:5px;
}
.search-suggestion-table:hover {
	background:rgba(255,255,255,0.2);
}

.search-suggestion-text-w {
	font-family: 'MontserratR', sans-serif;
	font-size:11.5px;
	font-weight:normal;
}
.search-suggestion-text-w a:link {color: #222; text-decoration: none;}
.search-suggestion-text-w a:visited {color: #222; text-decoration: none; } 
.search-suggestion-text-w a:hover {color: #222; text-decoration: none;} 

.search-suggestion-text-b {
	font-family: 'MontserratR', sans-serif;
	font-size:12px;
	font-weight:bold;
}
.search-suggestion-text-b a:link {color: #222; text-decoration: none;}
.search-suggestion-text-b a:visited {color: #222; text-decoration: none; } 
.search-suggestion-text-b a:hover {color: #222; text-decoration: none;} 

.search-suggestion-details-div {
	width:100%;
	height:45px;
	line-height:15px;
 	overflow: hidden;
   	text-overflow: ellipsis;
   	display: block;
   -webkit-box-orient: vertical;
   -webkit-line-clamp: 3; /* number of lines to show */
}