@charset "UTF-8";
/* CSS Document */

/******************************/
/****** Search Background *****/
/******************************/
#searchbox {
	background: #232323;
	-moz-border-radius: 8px;
	border-radius: 8px;
	border-width: 1px;
	border-style: solid;
	border-color: #1d1d1d #212121 #3a3c3c;            
	width: 220px;
	height: 25px;
	padding: 5px;
	overflow: hidden;
}
/****** Textfield & Button Alignment *****/
#search, #submit {
	float: left;
}
/****** Search Field *****/
#search {
	padding: 5px 4px;
	height: 14px;
	width: 140px;
	border:none;
	font: normal 13px Arial, Helvetica, sans-serif;
	color:#fff;
	background: #232323;     
}

/**************************/
/****** Button Styles *****/
/**************************/
#submit {
	height: 24px;
	padding: 0;
	width: 70px;
	cursor: pointer;
	font: 12px Arial, Helvetica;
	color: #535353;
	text-shadow: 0 1px 0 rgba(255,255,255,0.5);
/****** Button Background *****/
	background: #6cbb6b;
	background-image: -moz-linear-gradient(#f3f3f3, #cfcfcf);
	background-image: -webkit-gradient(linear,left bottom,left top,color-stop(0, #cfcfcf),color-stop(1, #f3f3f3));
/****** Button Round Corner *****/
	-moz-border-radius: 5px;
	border-radius: 5px;
/****** Button Border Style *****/
	border-width: 1px;
	border-style: solid;
	border-color: #333  #666 #999;
/****** Button Shadow *****/
	-moz-box-shadow: 0 0 1px rgba(0, 0, 0, 0.3), 0 1px 0 rgba(255, 255, 255, 0.3) inset;
	-webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0.3), 0 1px 0 rgba(255, 255, 255, 0.3) inset;
	box-shadow: 0 0 1px rgba(0, 0, 0, 0.3), 0 1px 0 rgba(255, 255, 255, 0.3) inset;
}
/****** Button Hover *****/
#submit:hover {		
	background: #95d788;
	background-image: -moz-linear-gradient(#cfcfcf, #f3f3f3);
	background-image: -webkit-gradient(linear,left bottom,left top,color-stop(0, #f3f3f3),color-stop(1, #cfcfcf));
}	
/****** Button Active *****/
#submit:active {		
	background: # 666;
	outline: none;
	-moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5) inset;
	-webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5) inset;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5) inset;		
}

#submit::-moz-focus-inner {
	border: none;
}		

/***************************/
/****** Textfield Font *****/
/***************************/
#search::-webkit-input-placeholder {
	color: #fff;
	font-style: italic;
}
/****** Button Active *****/
#search:-moz-placeholder {
	color: #fff;
	font-style: italic;
}    
/****** Button Active *****/
#search.placeholder {
	color: #fff !important;
	font-style: italic;
}  
/****** Button Active *****/
#search:focus
{
	border-color: #8badb4;
	background: # 444;
	outline: none;
}