/*
	css-plus by Jamy Golden
*/
* { margin: 0; padding: 0; }
fieldset { border: none }

#search-form { width: 190px; position: relative; }
#search { background: #b2a48c; border: 3px solid #402f1d; color: #2b1e11; height: 20px; line-height: 20px; width: 150px; padding: 2px 4px; position: absolute; top: 11px; left: 0}
#search-submit { background: #b2a48c url(../images/search.png) no-repeat 12px 7px; border: 3px solid #402f1d; height: 50px; width: 50px; position: absolute; top: 0; right: 0}
#search-submit:hover { background-color: #c7bba7;}

/* CSS3 */
#search { border-radius: 20px; -moz-border-radius: 20px; -webkit-border-radius: 20px;
   background: -webkit-gradient(linear, left top, left bottom, from(#b2a48c), to(#9b8d74));
   background: -moz-linear-gradient(top, #b2a48c, #9b8d74);
   text-shadow: rgba(0,0,0,.2) 0 0 5px;
   }
#search-submit { border-radius: 50px; -moz-border-radius: 50px; -webkit-border-radius: 50px; -mox-box-shadow: 0 0 5px black;
	/* Webkit-transition */
	-webkit-transition-property: background-color; 
	-webkit-transition-duration: 0.4s, 0.4s; 
	-webkit-transition-timing-function: linear, ease-in;
	}
