select#searchfield, input#searchfield, input#name, input#email{
	   border: 1px solid #111;
	   padding: 0.5em;
	   font-size: 12px;
     line-height: 1.2em;
     width: 180px;
     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#searchfield, textarea#comment{
	 border: 1px solid #111;
	 padding: 0.5em;
	 font-size: 12px;
     line-height: 1.2em;
     width: 500px;
     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:#0099FF;} <!--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: 28px;
    width: 80px;
    font: bold 12px/28px 'lucida sans', 'trebuchet MS', 'Tahoma';
    color: #fff;
    text-transform: uppercase;
    background:#003366;
    border-radius: 0 3px 3px 0;      
    text-shadow: 0 -1px 0 rgba(0, 0 ,0, .3);
}   
   
.search_form-wrapper button:hover{     
    background:#66FFFF;
}   
   
.search_form-wrapper button:active,
.search_form-wrapper button:focus{   
    background: #003366;
    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 #003366 transparent;
    top: 7px;
    left: -6px;
}
 
.search_form-wrapper button:hover:before{
    border-right-color: #66FFFF;
}
 
.search_form-wrapper button:focus:before,
.search_form-wrapper button:active:before{
        border-right-color: #003333;
}      
 
.search_form-wrapper button::-moz-focus-inner { /* remove extra button spacing for Mozilla Firefox */
    border: 0;
    padding: 0;
} 
div.search_form-wrapper{ float:right; padding-right:15px;}
