/*
 * $Id:$
 * 
 * A CSS file for rendering forms
 */

form label {
    width: 100px;
    float: left;
    font-weight: bold;
}

form .row {
    clear: both;
    margin-bottom: 10px;
    padding: 2px;
}

form .emph-row {
    background-color: #66CC00;
}

form textarea {
    width: 270px;
    height: 100px;
}

form textarea.large {
    height: 300px;
    width: 600px;
}

form .button {
    background-color: #003399;
    color: white;
}

form .button:hover {
    background-color: #003399;
    color: white;
}

form .button, form textarea, form input.text {
    border: 2px solid #CCCCCC;
}

form .button:hover, form textarea:hover, form input.text:hover{
    border: 2px solid #009900;
}
