#search-form {
	background: #ffffff; /* Fallback color for non-css3 browsers */
	width: 185px;
	
	/* Gradients */
	background: -webkit-gradient( linear,left top, left bottom, color-stop(0, rgb(255,255,255)), color-stop(1, rgb(255,255,255)));
	background: -moz-linear-gradient( center top, rgb(255,255,255) 0%, rgb(255,255,255) 100%);
	
	/* Rounded Corners */
	border-radius: 17px; 
	-webkit-border-radius: 17px;
	-moz-border-radius: 17px;
	
	/* Shadows */
	box-shadow: 1px 1px 2px rgba(0,0,0,.3), 0 0 2px rgba(0,0,0,.3); 
	-webkit-box-shadow: 1px 1px 2px rgba(0,0,0,.3), 0 0 2px rgba(0,0,0,.3);
	-moz-box-shadow: 1px 1px 2px rgba(0,0,0,.3), 0 0 2px rgba(0,0,0,.3);
}

/*** TEXT BOX ***/
#q {
	background: #ffffff; /* Fallback color for non-css3 browsers */
/*	background: url(../images/search.png) no-repeat 10px 6px #fcfcfc;  taken out because there is no search.png  3 august 2012 */
	background: #fcfcfc;
	/* Gradients */
	background: -webkit-gradient( linear, left bottom, left top, color-stop(0, rgb(255,255,255)), color-stop(1, rgb(255,255,255)));
	background: -moz-linear-gradient( center top, rgb(255,255,255) 0%, rgb(255,255,255) 100%);
	
	border: 0;
	border-bottom: 1px solid #fff;
	border-right: 1px solid rgba(255,255,255,.8);
	font-size: 10px;
	margin: 2px;
	padding: 5px;
	width: 100px;
	
	/* Rounded Corners */
	border-radius: 17px; 
	-webkit-border-radius: 17px;
	-moz-border-radius: 17px;
	
	/* Shadows */

	-webkit-box-shadow: -1px -1px 2px rgba(0,0,0,.3), 0 0 1px rgba(0,0,0,.2);
	-moz-box-shadow: -1px -1px 2px rgba(0,0,0,.3), 0 0 1px rgba(0,0,0,.2);
}

/*** USER IS FOCUSED ON TEXT BOX ***/
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(255,255,255)));
	background: -moz-linear-gradient( center top, rgb(255,255,255) 0%, rgb(255,255,255) 100%);
}

/*** SEARCH BUTTON ***/
input[type="submit"]{
	background: #EC195D;/* Fallback color for non-css3 browsers */
	
	/* Gradients */
	background: -webkit-gradient( linear, left top, left bottom, color-stop(0, rgb(236,25,93)), color-stop(0.15, rgb(236,25,93)), color-stop(0.88, rgb(236,25,93)), color-stop(1, rgb(236,25,93)));
	background: -moz-linear-gradient( center top, rgb(236,25,93) 0%, rgb(236,25,93) 15%, rgb(236,25,93) 88%, rgb(236,25,93) 100%);
	
	border: 0;
	color: #eee;
	cursor: pointer;
	float: right;
	font: 16px Arial, Helvetica, sans-serif;
	font-weight: bold;
	height: 22px;
	margin: 2px 4px 0;
	text-shadow: 0 -1px 0 rgba(0,0,0,.3);
/*  button width */
	width: 40px;
	outline: none;
	
	/* Rounded Corners */
	border-radius: 30px; 
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	
	/* Shadows */
	box-shadow: -1px -1px 1px rgba(255,255,255,.5), 1px 1px 0 rgba(0,0,0,.4);
	-moz-box-shadow: -1px -1px 1px rgba(255,255,255,.5), 1px 1px 0 rgba(0,0,0,.2);
	-webkit-box-shadow: -1px -1px 1px rgba(255,255,255,.5), 1px 1px 0 rgba(0,0,0,.4);
}
/*** SEARCH BUTTON HOVER ***/

input[type="submit"]:active {
	background: #ffffff; /* Fallback color for non-css3 browsers */
	
	/* Gradients */
	background: -webkit-gradient( linear, left top, left bottom, color-stop(0, rgb(1,113,195)), color-stop(0.15, rgb(11,134,214)), color-stop(0.88, rgb(0,175,238)), color-stop(1, rgb(0,175,238)));
	background: -moz-linear-gradient( center top, rgb(1,113,195) 0%, rgb(11,134,214) 15%, rgb(0,175,238) 88%, rgb(0,175,238) 100%);
}