/** OneForm **/
.input_small {
    padding: 4px 4px 4px 7px;
    background-color: #EEEEEE;
    border: 1px solid #CCCCCC;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
    min-height: 20px;
    cursor: not-allowed;
    color: #555555;
}

.input_textarea {
    min-height: 57px;
}

/** OneFormList **/
select {
    background-color: #ffffff;
    border: 1px solid #cccccc;
    border-radius: 3px;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    transition: border linear 0.2s, box-shadow linear 0.2s;
}
select:focus {
    border-color: rgba(82, 168, 236, 0.8);
    outline: 0;
    outline: thin dotted \9;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
}
/** END OneFormList **/

/** OneFormGroup **/
.one_form_group_container {
    background-color: #FFFFFF;
    border: 1px solid #DDDDDD;
    border-radius: 4px 4px 4px 4px;
    margin: 15px 0;
    padding: 39px 19px 0px;
    position: relative;
}

/** OneFormCombo **/
.one_form_combo_container {
    background-color: #EEEEEE;
    border: 1px solid #DDDDDD;
    border-radius: 4px 4px 4px 4px;
    /*
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 5px;
    padding-bottom: 5px;
    */
    position: relative;
}
.comboFieldContainer{
    /*margin-top: 10px;*/
}


.one_form_group_header {
    background-color: #F5F5F5;
    border: 1px solid #DDDDDD;
    border-radius: 4px 4px 0px 0;
    color: #9DA0A4;
    font-size: 12px;
    left: -1px;
    padding: 3px 7px;
    position: absolute;
    left: -1px;
    right: -1px;
    top: -1px;
}

.one_form_group_body {
}

.one_form_group_section {
    display: none;
}

.one_form_group_section_visible {
    display: block;
}

/** END OneFormGroup **/

/** OneForm Checkbox/Radio Buttons **/
.one_form_button_selected {
    background-color: #EBEBEB !important;
    border-color: #ADADAD !important;
    color: #333333 !important;    
}
/** END OneForm Checkbox/Radio Buttons **/