/* 
    Document   : form
    Created on : Jul 28, 2009, 2:43:10 PM
    Author     : Sergei
    Description:
        Purpose of the stylesheet follows.
*/

/* 
   TODO customize this sample style
   Syntax recommendation http://www.w3.org/TR/REC-CSS2/
*/

/**
 * Form styles
*/
form {
    /*overflow: auto;
    clear: both;*/
}

form label {
    display: block;
    margin:7px 0px 3px 0px;
    font-weight:bold;
}

form label span.note {
    font-weight:normal;
    font-size:8pt;
    color:#aaa;
}

form label span.required {
    color:#D61517;
}

form input, select, textarea {
    padding: 3px;
    width:97%;
    height:auto;
    margin:0px;

    border:1px solid #ccc;
    background:#f2f2f2;
    /*border-bottom-width:2px;
    border-right-width:2px;*/
    border-left-color:#999;
    border-top-color:#999;

    border-radius:5px;
    -moz-border-radius:5px;
    -webkit-border-radius:5px;

    font-family:inherit;
}

form input.title {
    font-size:14pt;
    font-weight:bold;
}

form input.checkbox {
    width:auto;
    border:none;
}

form div.buttons {
    /*border-top: 2px solid #f2f2f2;*/
    margin: 8px 0px 0px 0px;
    padding: 8px 0px 0px 0px;
    font-size:8pt;
}

form div.buttons a.cancel {
    color:#F00;
}

form div.buttons a.cancel:hover {
    background-color:#F00;
    color:#FFF;
}

form button {
    font-size:11.5pt;
    padding:5px;
}
