/****************************************
	CSS 3 SEARCH FORM BY CAMERON BANEY
    Design Blog: http://blog.cameronbaney.com 
	Twitter: @cameronbaney
****************************************/

#search-form {
	background: #e1e1e1; /* Fallback color for non-css3 browsers */
	width: 100%;
	
	
	
	/* Rounded Corners */
	border-radius: 0px; 
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	
	/* Shadows */
	box-shadow: 0px 0px 0px rgba(0,0,0,.3), 0 0 0px rgba(0,0,0,.3); 
	-webkit-box-shadow: 0px 0px 0px rgba(0,0,0,.3), 0 0 0px rgba(0,0,0,.3);
	-moz-box-shadow: 0px 0px 0px rgba(0,0,0,.3), 0 0 0px rgba(0,0,0,.3);
}

/*** TEXT BOX ***/
#search-form input[type="text"]{
	background: #fafafa; /* Fallback color for non-css3 browsers */
	
	
	
	border: 0;
	border-bottom: 1px solid #fff;
	border-right: 1px solid rgba(255,255,255,.8);
	font-size: 16px;
	margin: 4px;
	padding: 5px;
	width: 60%;
	
	/* Rounded Corners */
	border-radius: 0px; 
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	
	/* Shadows */
	box-shadow: -0px -0px 2px rgba(0,0,0,.3), 0 0 0px rgba(0,0,0,.2);
	-webkit-box-shadow: -0px -0px 2px rgba(0,0,0,.3), 0 0 0px rgba(0,0,0,.2);
	-moz-box-shadow: -0px -0px 2px rgba(0,0,0,.3), 0 0 0px rgba(0,0,0,.2);
}

/*** USER IS FOCUSED ON TEXT BOX ***/
#search-form input[type="text"]:focus{
	outline: none;
	background: #fff; /* Fallback color for non-css3 browsers */
	
	/* Gradients */
	background: -webkit-gradient( linear, left bottom, left top, color-stop(0, rgb(255,255,255)), color-stop(1, rgb(235,235,235)));
	background: -moz-linear-gradient( center top, rgb(255,255,255) 0%, rgb(235,235,235) 100%);
}

/*** SEARCH BUTTON ***/
#search-form input[type="submit"]{
	
	/* Gradients */
	background: #FC9900;
	
	
	border: 0;
	color: #fafafa;
	cursor: pointer;
	float: right;
	font: 0.925em Arial, Helvetica, sans-serif;
	font-weight: normal;
	height: 30px;
	margin: 4px 4px 0;
	text-shadow: 0 -0px 0 rgba(0,0,0,.3);
	width: 25%;
	outline: none;
	
	/* Rounded Corners */
	border-radius: 0px; 
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	
	/* Shadows */
	box-shadow: -0px -0px 0px rgba(255,255,255,.5), 0px 0px 0 rgba(0,0,0,.4);
	-moz-box-shadow: -0px -0px 0px rgba(255,255,255,.5), 0px 0px 0 rgba(0,0,0,.2);
	-webkit-box-shadow: -0px -0px 0px rgba(255,255,255,.5), 0px 0px 0 rgba(0,0,0,.4);
}
/*** SEARCH BUTTON HOVER ***/
#search-form input[type="submit"]:hover {
		
	/* Gradients */
	background: #FC9900;
	
}
#search-form input[type="submit"]:active {
	background: #FC9900; /* Fallback color for non-css3 browsers */
	
	
}