﻿/* GENERAL STYLES */
/* GENERAL STYLES */
div.ed_form
{
	margin-top: 30px;
}

div.ed_form_group
{
    margin-bottom: 20px;
}

div.ed_form_group_name
{
    display: none;
}

div.ed_form_element
{
    text-align: right;
    margin-bottom: 3px;
    width: 450px;
}

div.ed_form_element span.ed_form_label, div.ed_form_element label.ed_form_label
{
    float: left;
}

/* format the controls */
div.ed_form_element input.ed_form_textbox, div.ed_form_element select.ed_form_dropdown_list, div.ed_form_element textarea.ed_form_textbox_multiline
{
    width: 250px;
    height: auto;
    border: solid 1px Gray;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1em;
    padding: 2px 4px 2px 4px;
}

div.ed_form_element input.ed_form_textbox
{
	margin-right: 120px;
}

div.ed_form_element textarea.ed_form_textbox_multiline
{
	width: 370px;
	height: 150px;
}

div.ed_form_element select.ed_form_dropdown_list
{
    width: 260px;
}

div.ed_form_element textarea.ed_form_textbox_multiline
{
    height: 100px;
}

/* required controls */
div.ed_form_element input.ed_form_element_required, div.ed_form_element select.ed_form_element_required
{
}

/* invalid controls */
div.ed_form_element input.ed_form_invalid_control, div.ed_form_element select.ed_form_invalid_control, div.ed_form_element input.invalid_control
{
    background-color: #FDF3F3;
    border: solid 1px #A9192B;
    content: "*";
}

div.ed_form_element textarea.ed_form_invalid_control
{
	background-color: #FDF3F3;
    border: solid 1px #A9192B;
}

span.ed_form_label_required, label.ed_form_label_required
{
    font-weight: bold;
}

span.ed_form_invalid_label, label.invalid_label
{
    color: #A9192B;
}

/* submit button */
div.ed_form_submit_outer
{
	margin-left: 70px;
    width: 450px;
    text-align: left;
    margin-top: -10px;
}

div.ed_form_submit_inner
{
}

/* validation summary */
div.ed_form_validation_summary, div.validationSummary
{
    margin: 10px 0px 30px 0px;
    border: solid 1px #A9192B;
    width: 448px;
    color: #A9192B;
    background-color: #FDF3F3;
    text-align: left;
    font-size: 1em;
}

div.ed_form_validation_summary_inner, div.validationSummaryInner
{
    padding: 10px 15px 10px 15px;
}

div.ed_form_validation_summary div.header, div.validationSummary div.header
{
    font-size: 1em;
    font-weight: bold;
    margin-bottom: 10px;
    color:#A9192B;
}

div.ed_form_validation_summary table.ed_form_validation_summary_items, div.validationSummary table.validationSummaryItems
{
    font-size: 1em;
    width: 100%;
}

div.ed_form_validation_summary table.ed_form_validation_summary_items td, div.validationSummary table.validationSummaryItems td
{
    font-size: 1em;
    width: 100%;
    padding: 0px 15px 0px 0px;
}

div.ed_form_validation_summary table.ed_form_validation_summary_items div.ed_form_summary_message, div.validationSummary table.validationSummaryItems div.message
{
    background-image: url(/images/validation_item_marker.gif);
    background-repeat: no-repeat;
    background-position: 0px 0px;
    padding: 3px 2px 3px 10px;
    margin-left: 10px;
}
