﻿.simpleform_webpart /* class of the web part itself */
{
}
.simpleform_label /* labels at the left side */
{
    padding-right: 1em;
    display: block;
    float: left;
    width: 150px;
}
.simpleform_labellong /* a label covering the entire row (created with the prefix Hidden:) */
{
    width: 100%;
}
.simpleform_checkbox input /* single checkbox */
{
  float: left;
}
.simpleform_dropdownlist input /* dropdown list */
{
  float: left;
}
.simpleform_checkboxlist input /* checkbox list */
{
  float: left;
}
.simpleform_radiobuttonlist input /* radiobutton list */
{
  float: left;
}
.simpleform_textarea /* text area */
{
    width: 200px;
}
.simpleform_textbox /* text box */
{
    width: 200px;
}
.simpleform_sendbutton /* send button */
{
  float: left;
  width: auto;
}
.simpleform_sendbuttonlabel /* send button label */
{
    padding-right: 1em;
    display: block;
    float: left;
    width: 150px;
}
.simpleform_messagelabel /* message label (e.g. for success message) */
{
}
.simpleform_errormessagelabel /* error message label */
{
    color:#ff0000;
}
