
#search {
	width: 200px;
	margin: 4px;
}
.search_text{
	width: 140px;
	font-size: 14px;
	font-family: arial, sans-serif;
	border: 0 none;
/*	height: 24px;*/
	margin-right: 0;
	color: white;
	outline: none;
	float: left;
	box-sizing: border-box;
	transition: all 0.15s;
	background-color: #9CCBDC;
	padding-top: 4px;
	padding-right: 10px;
	padding-bottom: 4px;
	padding-left: 10px;
}
::-webkit-input-placeholder { /* WebKit browsers */
	color: white;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
	color: white;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
	color: white;
}
:-ms-input-placeholder { /* Internet Explorer 10+ */
	color: white;
}
#search_text:focus {
	background-color: rgb(204,204,204);
}
.search_button {
	border: 0 none;
	background: #0083b3 url(search.png) center no-repeat;
	width: 32px; 
	float: left;
	padding: 0;
	text-align: center;
	height: 24px;
	cursor: pointer;
}
