/**
 * formWizard: php form generator
 *
 * Cascading Style Sheet
 * defines the look of formWizard forms
 *
 * @author Andreas Demmer <mail@andreas-demmer.de>
 * @version 2.2.0
 */

.form {
}

.form form {
    margin: 0px;
}

.form .separator {

}

.form .element {
    margin: 0px 0px 0px 0px;
    clear: both;
}

.form .element .description {
    float: left;
    width: 150px;
	text-align:left;
	padding-right:10px;
}

.form .element .description .note {
    display: block;
    font-size: 10px;
    color: #aaa;
}

.form .element .field input {
    width: 250px;
    text-align: left;
    border: 1px;
    color: #000;
    border-color: #aaa;
    border-style: solid;
    background-color: #fff;
}

.form .element .field select {
    width: 250px;
    text-align: left;
    border: 1px;
    color: #000;
    border-color: #aaa;
    border-style: solid;
    background-color: #fff;
}

.form .element .field textarea {
    width: 250px;
    height: 100px;
    font-family: Arial, sans-serif;
    font-size: 12px;
    color: #080C73;
}

.form .element .field .checkbox {
    width: 20px;
    border: 0px;
    background-color: transparent;
}

.form .element .field .radio {
    width: 20px;
    border: 0px;
    background-color: transparent;
}

.form .element .field .submit {
    text-align: center;
    width: 250px;
    height: 35px; 
    font-weight: bold;
    color: #000;
    border-color: #aaa;
    background-color: #eee;
}

.form .element .field .error {
    margin: 0px 0px 0px 0px;
    padding: 0px;
    font-size: 10px;
    color: #cc0000;
}