#searchfield, select {
	   border: 1px solid #111;
	   padding: 0.5em;
	   font-size: 18px;
     line-height: 1.2em;
     width: 400px;
     background: #444;
     color: #fff;
     font-family: helvetica, sans-serif;
     background: -webkit-gradient(linear, left top, left bottom, from(#222), to(#444));
     -webkit-appearance: none;
	 }
	 textarea{
	 border: 1px solid #111;
	 padding: 0.5em;
	 font-size: 15px;
     line-height: 1.2em;
     width: 320px;
     background: #444;
     color: #fff;
     font-family: helvetica, sans-serif;
     background: -webkit-gradient(linear, left top, left bottom, from(#222), to(#444));
     -webkit-appearance: none;
 	   -webkit-box-shadow: 1px 1px 1px #333;
	 }
	 
	 #searchfield, input:focus, textarea:focus, select:focus {outline-color:#A65FC5;} <!--outline when field is selected -->
	 

	 input[type=text] {
     background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #222), color-stop(0.12, #333));
   }
/* Form submit button */
.search_form-wrapper button {
    overflow: visible;
    position: relative;
    border: 0;
    padding: 0;
    cursor: pointer;
    height: 40px;
    width: 100px;
    font: bold 17px/40px 'lucida sans', 'trebuchet MS', 'Tahoma';
    color: #fff;
    text-transform: uppercase;
    background:#583e72;
    border-radius: 0 3px 3px 0;      
    text-shadow: 0 -1px 0 rgba(0, 0 ,0, .3);
}   
   
.search_form-wrapper button:hover{     
    background:#A65FC5;
}   
   
.search_form-wrapper button:active,
.search_form-wrapper button:focus{   
    background: #A65FC5;
    outline: 0;   
}
 
.search_form-wrapper button:before { /* left arrow */
    content: '';
    position: absolute;
    border-width: 8px 8px 8px 0;
    border-style: solid solid solid none;
    border-color: transparent #583e72 transparent;
    top: 13px;
    left: -6px;
}
 
.search_form-wrapper button:hover:before{
    border-right-color: #A65FC5;
}
 
.search_form-wrapper button:focus:before,
.search_form-wrapper button:active:before{
        border-right-color: #A65FC5;
}      
 
.search_form-wrapper button::-moz-focus-inner { /* remove extra button spacing for Mozilla Firefox */
    border: 0;
    padding: 0;
} 
div.search_form-wrapper{ text-align:center; background:#E6E4F0; width:1000px; margin:auto; height:40px; padding-top:20px; padding-bottom:20px; padding-left:10px; padding-right:10px; margin-bottom:20px;}