.zend_form {
    margin: 10px;
}

input[type=text], input[type=password], textarea {
    font-family: Verdana, Tahoma, Arial, 'sans-serif';
    border: 1px solid #bbc;
    padding: 5px;
    font-size: 12px;
    border: 1px solid #bbc;
    background-color: #fdfdfd;
}

input[type=text], input[type=password] {    
    width: 240px;
    height: 16px;
    line-height: 16px;
}

input[type=text]:focus, input[type=password]:focus, textarea:focus {
    padding: 4px;    
    border-width: 2px;
    border-color: #ee8907;
    background-color: white;
}

input[type=text]:hover, input[type=password]:hover, textarea:hover {
    border-color: #ee8907;
    background-color: white;
}

input[type=submit], button {
    border: 1px solid #ccc;
    line-height: 16px;
    padding: 5px;

    background-color: #333;
    color: white;
    font-weight: bold;
    font-size: 13px;
}

input[type=submit]:hover, button:hover {
    background-color: #555;
}


.zend_form dt {
    height: 28px;
    line-height: 28px;
    font-size: 12px;
    float: left;
    width: 180px;
    text-align: right;
    clear: left;
    margin-bottom: 8px;
}

.zend_form dd {
    margin-left: 185px;
    margin-bottom: 8px;
}

.zend_form ul.errors li {
    font-size: 11px;
    color: red;
}

label.required {
    font-weight: bold;
}