.empty {
	background: rgba(255,255,255,0.5);
}

input, textarea, radio {
    outline:none;
    color: #666666;
    font-family:Arial,Verdana,Helvetica;
    border-radius:10px;
    -webkit-border-radius:10px;
    -moz-border-radius:10px;
    transition: all 0.25s ease-in-out;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;    
    border:1px solid rgba(0,0,0, 0.2);
    background: rgba(255,255,255,0.5);
}

select {
    border:0;
    outline:none;
    background:rgba(255,255,255,0.5);
    border:1px solid rgba(0,0,0, 0.2);
    padding:2px 10px;
    width:200px;
    *width:200px; 
    -webkit-appearance: none; 
    overflow:hidden;
    width:200px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: url("../images/arrow.png") no-repeat scroll 170px 8px rgba(255,255,255,0.5); 

}

input:focus, textarea:focus, select:focus, {
    box-shadow: 0 0 8px rgba(184, 255, 124, 0.7);
    -webkit-box-shadow: 0 0 8px rgba(184, 255, 124, 0.7); 
    -moz-box-shadow: 0 0 8px rgba(184, 255, 124, 0.7);
    border:1px solid rgba(151, 206, 104, 0.8); 
    background-color: white;
}

input:checked {
    color: rgba(151, 206, 104, 0.8);
}