@CHARSET "UTF-8";

.EmForm_box {
    font-family: "Lucida Grande", Tahoma, Arial, sans-serif;
    border: 0px solid #7EaDe7;
    /*background-color: #FCFAE6;*/
    _height:1px;
}

.EmForm_box p {
    margin: 0.2em 0;
}

/* header  */
.EmForm_header {
    height: 0px;
    /*background-color: #7EaDe7;*/
}

/* list */
.EmForm_content{
    margin: 0px 20px;
    padding: 20px 0;
    _height: 1px;
}

/* buttons */

.EmForm_buttons{
    /*background-color: #7EaDe7;*/
    text-align: center;
    padding:14px 0;
	border-top:1px dotted #CCCCCC;
}

.EmForm_buttons input{
    font-size:120%;
    margin-right:5px;
    padding:2px 10px;
}


/*************************************** CONTENT ***/

/* title */
.EmForm_content div.EmForm_Title {
    border-bottom: 1px dotted #ccc;
}

.EmForm_content div.EmForm_Title h2 {
    font-weight: bold;
    font-size: 140%;
    margin: 0 0 3px 0;
    clear: left;
}

.EmForm_error_box{
    border:1px solid red;
    background-color: #fff;
    color:red;
    padding:12px;
    margin:10px auto;
}

/************************ EmForm_list ******************/

.EmForm_content div.EmForm_list {
    margin: 0;
    width:100%;
    overflow: hidden;
}


/* section | fieldset */
.EmForm_list fieldset.EmForm_section{
    margin:10px 0;
    padding:10px 0px 0 1px;
    border-width: 2px 0 0 0;
    clear: both;
}

.EmForm_list fieldset.EmForm_section legend{
    color:#706241;
    margin-left:20px;
    font-size: 110%;
    font-weight:bold;
}


/* item */
.EmForm_list .EmForm_item{
	margin:0;
	padding:4px 5px 2px 9px;
    clear:both;
    _height:1px;
    position: relative;
    width: 97%;
}

.EmForm_list div.leftHalf{
    clear: left;
    float:left;
    width: 46%;
}

.EmForm_list div.rightHalf{
    clear: none;
    float:right;
    width: 46%;
}

.EmForm_list div.error{
    background-color: #FFDFDF;
    margin-top:2px;
    margin-bottom:2px;
}

/* EmForm_item_? */

.EmForm_item label{
    line-height: 1.8em;
		color:#0066CC;
}

.EmForm_item div.EmForm_item_input{
	margin:0;
	padding:0 0 4px 0;
    color:#444;
    _height:1px;
    margin-right:4px; /* width 100% input_text out 2-4px */
    _margin-right:0; /* not work in IE,reset to 0 */
    
}

input.input_text, input.input_password , textarea.input_textarea, select.input_select{
	margin: 0;
	padding: 2px 0;
    border: 1px solid #999;	
}


.EmForm_item p.EmForm_item_notes{
	margin:0 0 5px 0;
    color:#888;
    /* font-size: 100%; */
}

.EmForm_item p.EmForm_item_error{
    margin:0 0 5px 0;	
    text-align: right;
    color:red;
    font-size: 80%;
}

/* size */

.EmForm_item input.small, .EmForm_item select.small{
    width:25%;
}

.EmForm_item input.medium, .EmForm_item select.medium{
    width:50%;
}

.EmForm_item input.large, .EmForm_item select.large{
    width: 100%;

}

.EmForm_item textarea.small{
    width: 100%;
    height: 5.5em;
}
.EmForm_item textarea.medium{
    width: 100%;
    height: 10em;
}
.EmForm_item textarea.large{
    width: 100%;
    height: 20em;
}

/** disable **/
.disable .input_text{
	background-color:#ddd;
}


