/**
 * formWizard: php form generator
 *
 * Cascading Style Sheet
 * defines the look of formWizard forms
 *
 * @author Andreas Demmer <mail@andreas-demmer.de>
 * @version 2.1.0
 */

.form {
}

.form form {
    margin: 0px;
}

.form .separator {
}

.form .element {
    margin: 0px 0px 10px 0px;
    clear: both;
}

.form .element .description {
    float: left;
    width: 150px;
}

.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 .calendar_day {
	width: 16px;
	margin-right: 3px;
	text-align: center;	
}

.form .element .field .calendar_month {
	width: 16px;
	margin-right: 3px;
	text-align: center;
	
}

.form .element .field .calendar_year {
	width: 32px;
	margin-right: 3px;
	text-align: center;
}

.form .element .field .calendar_date {
	//display: none;
	width: 66px;
	text-align: center;
}

.form .element .field .calendar_icon {
	position: relative;
	margin-right: 3px;
	top: 6px;
}

.form .element .field .calendar_increase,
.form .element .field .calendar_decrease {
	position: relative;
	margin-right: 3px;
	top: 3px;
}

.form .element .field .highlight {
	border-color: red;
}

.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;
    font-weight: bold;
    color: #000;
    border-color: #aaa;
    background-color: #eee;
}

.form .element .field .error {
    width: 200px;
    margin: 0px 0px 0px 155px;
    padding: 0px;
    font-size: 10px;
    color: #cc0000;
}