@charset "utf-8";
/* CSS Document */

form {
        width: 100%;
        min-width: 400px;
}

fieldset {
        border: 1px solid #d3d7cf;
        border-width: 1px 0 0 0;
        margin: 0;
        padding: 1% 1em;
        clear: both;
}

legend {
        margin: 0;
        padding: 0 1em;
}

.multiple {
        width: 100%;
}

.field,
.multiple {
        clear: both;
        padding: 1% 0 0 0;
        margin: 0 0 0 0;
}

.field label,
.multiple p {
        cursor: pointer;
        width: 29%;
        margin: 0 1% 0 0;
        float: left;
        display: block;
        text-align: right;
        line-height: 150%;
        max-width: 450px;
        min-width: 50px;
}

.field input,
.field select,
.field textarea {
        width: 64%;
        float: left;
        display: block;
        line-height: 150%;
        margin: 0;
        max-width: 450px;
        min-width: 150px;
		background: #feddab;
}

.field input,
.field select,
.field textarea {
        border-top: 1px solid #d3d7cf;
        border-left: 1px solid #d3d7cf;
        border-bottom: 1px solid #eeeeec;
        border-right: 1px solid #eeeeec;
}

.required label {
        font-weight: bold;
}

.required input,
.required select,
.required textarea {
        border-top-color: #f57900;
        border-left-color: #f57900;
        border-bottom-color: #fcaf3e;
        border-right-color: #fcaf3e;
        background: #feddab;
}
       
.multiple input,
.multiple select,
.multiple textarea {
        width: auto;
}

.multiple label {
        width: auto;
        text-align: left;
        padding: 0 1em 0 0.5em;
}

.submit {
        float:right;
}

.submit input {
        min-width: 0;
        text-align: center;
        margin: 0 0 0 1em;
        width: auto;
}

input:focus,
textarea:focus,
selected:focus {
        border-top-color: #babdb6;
        border-left-color: #babdb6;
        border-bottom-color: #d3d7cf;
        border-right-color: #d3d7cf;
        background: #eeeeec;
}

span.error,
span.help {
        width: 29%;
        margin: 0 1% 0 0;
        float: left;
        display: block;
        text-align: right;
        line-height: 150%;
        max-width: 450px;
        min-width: 50px;
        clear: both;
}

span.error {
        color: #ef2929;
        font-weight: bold;
}

span.help {
        color: #babdb6;
}

div.error label {
        color: #ef2929;
}

div.error input,
div.error select,
div.error textarea {
        background: #fdd0d0;
        border-top-color: #cc0000;
        border-left-color: #cc0000;
        border-bottom-color: #ef2929;
        border-right-color: #ef2929;
}

div.ok label {
        color: #73d216;
        font-weight: normal;
}

div.ok input,
div.ok select,
div.ok textarea {
        background: #caf2a3;
        border-top-color: #73d216;
        border-left-color: #73d216;
        border-bottom-color: #8ae234;
        border-right-color: #8ae234;
}

.icon {
        text-align: center;
        display: bloc;
        width: 20px;
        float: left;
        height: 18px;
        background: no-repeat 100% 50%;
}

.ok .icon {
        background-image: url("check.png");
}

.error .icon {
        background-image: url("cross.png");
}
input.error{border: 2px solid red;}
p.error-message{font-weight:bold;color:red;}