ul.form{
    list-style-type: none;
    list-style: none;
    margin: 0;
    padding: 0;
}
.form li{
    list-style-type: none;
    list-style: none;
    padding: 6px 0 7px;
    vertical-align: middle;   
	overflow:hidden;   
}
.text, .textarea,.select{
    
    -moz-box-sizing: border-box;
    border: 1px solid #CCCCCC;
    margin: 0 3px 0 0;
    padding: 6px 3px 5px;
    border-radius: 3px 3px 3px 3px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) inset;
    color: #666666; 
    background-color: #FFFFFF;
    vertical-align: middle;
    max-width: 350px;
    width: 100%;
   	
}
.text:focus, .textarea:focus, .select:focus{
    border-color: rgba(82, 168, 236, 0.8);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) inset, 0 0 8px rgba(82, 168, 236, 0.6);
    transition: border 0.2s linear 0s, box-shadow 0.2s linear 0s;
}
.textarea {
    height: 80px;
    width: 350px;	
}
.select {
    height: 2.2em;
    line-height: 2.2em;
    max-width: 100%;
    min-width: 4em;
}
.radio{
    margin-top: 3px;
    margin-right: 5px;
}
.label{
    float: left;
    text-align: left;
    width: 150px;
    display: block;
    font-weight: bold;
    margin-top: 5px;
    padding-bottom: 2px;
}
label.required:after{
    color: #D64830;
    content: "*";
    font-size: 130%;
    line-height: 1px;
    padding-left: 3px;
}
.label span{
    color:red;
}
.label-auto{
    width:auto !important;
}
.color-666{
    font-size: 11px !important;
    color:#666 !important;
}
.radius-3{
    border:1px solid #99cccc;
    border-radius: 3px;
	-moz-border-radius: 3px;
	-khtml-border-radius: 3px;
	-ms-border-radius: 3px;
	-webkit-border-radius: 3px;
}