/**
 * Stylesheet for general forms
 *
 * @author      Greg Tammi <greg@pictographics.com>
 * @copyright   Copyright (c) 2008+ Pictographics Ltd
 */

/**
 * ================================= HISTORY =================================
 * July 18, 2008:   (GT) Initial file creation
 * ===========================================================================
 */

/* start with global form style ... individual forms can be styled later */
form {
    font: 95% verdana, arial, sans-serif; 
    color: #5d5d5d ;
    float: left ;
    clear: left ;
    margin-bottom: 1em ;
}

dl dt {
    clear: left; 
    float: left; 
    width: 110px ;
    padding: 7px 0;
}

dl dd {
    margin-left: 115px ;
    vertical-align: top ;
    padding: 7px 0;
} 

.texta {
    border: 1px solid #cfcfcf ;
    background: #f7f7f7 ;
    color: #899198 ;
    padding: 6px ;
}

input.texta:focus, select.texta:focus, textarea.texta:focus, input.button:hover{
    border: 1px solid #737a80 ;
    background: #fff2e6 ;
    color: #555 ;
}
    
/* form input elements get a width .. check and radio buttons no */
input.texta {
    width: 280px;
}

textarea.texta {
    width: 281px ;
    height: 120px ;
    font-family: verdana ;
    font-size: 90% ;
}

select.texta {
    width: 295px ;
}

input.button {
    clear: left; 
    float: left; 
    margin-left: 140px ;
    margin-top: 1.0em ;
    padding: 3px ;
}