/* This is the style for the informational messages presented to the user */
div.error, div.message {
    background: #ffc;
    border: 1px solid green;
    color: black;
    font-weight: normal;
    margin: 10px auto;
    padding: 2px;
    padding-left: 4px;
    text-align: left;
    vertical-align: bottom;
}

/* use a different color for the errors */
div.error {
    border: 2px solid red;
}

span.fieldError, span.errorMessage {
    color: maroon !important;
}

form input, form textarea, form select {
    padding-left: 4px;
    color: #666;
}

/* fix for spacing in IE */
form {margin: 0px }

input.button, button {
    color: #000;
    font-size: 11px;
    padding-left: 2px;
}

button, input.button {
    /* fix button size in IE */
    line-height: 14px;
}

/* make buttons looks the same in Mozilla */
div>button, p>button, td>input.button {
    padding: 1px 3px !important;
}

/* Warning: IE doesn't support pseudo-class :focus */
form input:focus, form textarea:focus, form select:focus {
    border: 2px inset orange;
    color: #000;
}

form select {
    padding-left: 0px;
}

form th {
    text-align: right;
}

form td img {
    vertical-align: middle;
    padding-left: 2px;
    padding-bottom: 2px;
}
