/** For more information on tabless forms see: http://www.quirksmode.org/css/forms.html */
label, input, select, textarea {
    display: block;
    float: left;
    margin-bottom: 10px;
}

input[type='text'], input[type='file'], input[type='password'], select {
    width: 200px;
}

select[multiple="multiple"] {
    height: 200px;
}

textarea {
    height: 200px;
    width: 400px;
}

label {
    text-align: right;
    width: 125px;
    padding-right: 20px;
    padding-left: 30px;
}

form br {
    clear: left;
}

input[type="submit"], input[type="reset"], form .boolean, form .small {
    width: 60px;
}

fieldset {
    border: 1px solid #AAAAAA;
}

fieldset label {
	width: 125px;
    padding-left: 0;
}

fieldset fieldset label {
	width: 100px;
}

legend {
    font-weight: bold;
}

.error {
    font-weight: bolder;
}

.success {
    color: #009900;
}

input[type="hidden"], .help {
    display: none;
    visibility: hidden;
}

.required:after {
    color: red;
    content: " *"
}