/* 
    Document   : form
    Created on : 7/12/2010, 03:12:45 PM
    Author     : allan
    Description:
        Purpose of the stylesheet follows.

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

/************************* formulario contacto *****************************/
.zend_form {
    padding: 0;
    margin: 0;
}

#AutoForm {
    float: left;
    width: 400px;
}

.zend_form input[type="text"],
.zend_form input[type="password"],
.zend_form textarea {
    width: 425px;
    height: 16px;
    color: #332c25;
    border: none;
    background-color: #ffffff;
    padding:  1px;
    margin: 8px 0;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.zend_form input[type="text"].error ,
.zend_form input[type="password"].error ,
.zend_form textarea.error {
    border-color: #404041;
    
}

.form-errors ul {
    margin: 0;
}

.form-errors ul li {
    font-size: 13px;
}

.zend_form dd {
    padding: 0;
    margin: 0;
}

.zend_form textarea {
    height: 75px;
}

.zend_form .button {
    color: #ffffff;
    width: 86px;
    height: 30px;
    background-color: #332c25;
    text-align: center;
    border: none;
    padding: 4px 0;
    margin-top: 3px;
    margin-bottom: 10px;
    cursor: pointer;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.zend_form .button:hover {
    color: #000000;
    background-color: #D7DF23;
}

.zend_form #mensaje-label {clear: both;}

.zend_form .tipos {
    clear: both;
}

.zend_form .tipos p {
    font-weight: bold;
    padding-top: 10px;
}

.zend_form .tipos dd span {
    float: left;
}

.zend_form .tipos dd input[type="text"] {
    width: 100px;
    float: left;
    margin-right: 20px;
}

.zend_form dd label,
.zend_form dt {
    float: left;
    color: #332c25;
}