/*
*  'Get Help' form
*/
form#get_help_form {
    margin: 4px auto;
    width: 600px;
}

/*
*  This affects the fieldset elements on the form
*/
form#get_help_form fieldset {
    margin: 6px 0;
    background-color: #f9f9f9;
}

form#get_help_form fieldset legend {
    font: normal normal 14px/16px Verdana, Geneva, Arial, Helvetica, sans-serif;
}

/*
*  This affects all label elements on the form
*/
form#get_help_form label {
    float: left;
    margin: 2px 6px 2px 0;
    width: 200px;
    text-align: right;
}

/*
*  This affects all input/textarea fields on the form
*/
form#get_help_form input, form#get_help_form textarea {
    margin: 2px 0;
    width: 350px;
}

/*
*  This affects all select elements on the form
*/
form#get_help_form select {
    margin: 2px 0;
}

/*
*  This overrides the styling for labels which contain radio buttons
*/
form#get_help_form label.radio_label {
    float: none;
    width: 50px;
    line-height: 18px;
}

form#get_help_form label.radio_label input {
    margin: 2px 4px 0 0;
    width: 20px;
    height: 20px;
}

/*
*  This overrides the styling for submit type input buttons
*/
form#get_help_form input.submit {
    width: auto;
}

/*
*  This forces a line break after form elements
*/
form#get_help_form br {
    clear: both;
}

/*
*  This is for paragraphs defined as 'form notes'
*/
form#get_help_form p.form_note {
    margin: 4px 0 4px 50px;
    width: 500px;
}