﻿/*
 * Over all form style, just like body tag
 */
.form-all{
   
    font-family: Tahoma;
    font-size: 13px;
    line-height:15px;
    
}


/**
 * Input styles
 */
.form-textbox, .form-textarea, .form-dropdown, .form-radio-other-input,.form-checkbox-other-input, .form-captcha input, .form-list{
    -moz-border-radius:5px;
    -webkit-border-radius:5px;
    border-radius:5px;
    -moz-box-shadow:0 2px 3px rgba(0, 0, 0, 0.2) inset, 0 1px 0 rgba(255, 255, 255, 0.75);
    -webkit-box-shadow:0 2px 3px rgba(0, 0, 0, 0.2) inset, 0 1px 0 rgba(255, 255, 255, 0.75);
    box-shadow:0 2px 3px rgba(0, 0, 0, 0.2) inset, 0 1px 0 rgba(255, 255, 255, 0.75);
    background-color: #FFFFFF;
    border:1px solid #999;
    padding:3px 6px;
}
.form-list{
    padding:3px;
}

/**
 * When inputs got focus
 */
.form-textbox:focus, .form-textarea:focus, .form-dropdown:focus, .form-checkbox-other-input:focus,.form-radio-other-input:focus,  .form-captcha input:focus{
	border-color: #FF9900;
}


/* Validation errors */
    
.form-validation-error{
    border-color:red !important;


