/*
 *
 * css/formular/cmsbase_formular.css
 * Styles für die Formelemente
 *
 */

input {
    background-color: #efefef;
    color: #676767;
    border: 1px solid #c1c1c1;
    font-family: verdana, sans-serif;
    font-size: 11px;  
}

input.checkbox, input.radiobox {
    border: 0px;
    padding: 0px;
}

.required {
    font-size: 14px;
    color: red;
}

.button:hover {
    border-bottom: 2px solid #2897C5;
    cursor: pointer;
    color: #000000;
}

.button {
    color: #666666;
    cursor: pointer;
    border-bottom: 2px solid #e3e3e3;
}

.buttons {
    border-top: 1px solid #e3e3e3;
    padding-top: 2px;
    text-align: right;
}

.fieldset {
    padding: 5px;
	border: 0px;
    background-image: none;
    background-color: #ffffff;    
}

.textarea {
    background-color: #ffffff;
    margin-left: 5px;
    border-style: solid;
    border-width: 1px;
    border-color: #e3e3e3;
    color: #1f1f1f;
    font-size: 12px;
    width: 675px;
    height: 150px;
    font-family: verdana, sans-serif;
}

.inputshort {
    background-color: #ffffff;
    width: 100px;
}

.inputmiddle {
    width: 200px;
}

.inputlong {
    width: 400px;
}

label {
    cursor: pointer;
}


/*
 *    Error Styles
 */
.error_ul {
    list-style-type: none;
    color: #e00010;
    background-color: #ffffff;
    text-align: left;
    border-bottom: 1px dashed #dddddd;
    padding: 0px;
    margin: 0px;
}

.error_ul li {
    padding-left: 40px;
}

/*
 *    NONError Styles
 */
.no_error_ul {
    list-style-type: none;
    color: green;
    background-color: #ffffff;
    text-align: left;
    border-bottom: 1px dashed #dddddd;
    padding: 0px;
    margin: 0px;
}