﻿@charset "utf-8";
/* CSS Document */

#emailForm {
    float: right;
    margin: 1em;
    width: 400px;
}

#emailForm div {
    background-color: #e67817;
    padding: .5em;
    -webkit-box-shadow: 8px 8px #006633;
    -moz-box-shadow: 8px 8px #006633;
    box-shadow: 8px 8px #006633;
    border-radius: 10px;
}

input[type=text] {
    border: none;
    border-bottom: 1px solid #006633;
    width: 175px;
    font-family: Verdana, Geneva, sans-serif;
    font-size: 12px;
    background-color: #e67817;
}

select {
    width: 175px;
    font-family: Verdana, Geneva, sans-serif;
    font-size: 12px;
    background-color: #e67817;
}

textarea {
    width: 225px;
    height: 80px;
    border: 1px inset #006633;
    background-color: #e67817;
}

button {
    cursor: pointer;
    font-family: Verdana, Geneva, sans-serif;
    font-size: 12px;
    color: #000;
    width: 100px;
    background-color: #e67817;
    border: 1px outset #006633;
}

.disabled {
    color: #bbb;
    cursor: default;
}

.fieldCaption {
    padding-top: 3px;
    margin-left: 5px;
    display: block;
    float: left;
    width: 100px;
}

.formField {
    padding-top: 3px;
}

input.active, textarea.active {
    background-color: #fff;
}

.sendresult {
    min-height: 1em;
    height: 1em;
    width: 175px;
}

.senderror {
    font-weight: bold;
}

.sendprogress {
    background-image: url(/content/images/processingbar.gif);
}

