#form-contato {
    margin: auto 5px auto 5px;
    color: #555;
    font-family: 'Yanone Kaffeesatz', arial, sans-serif;
    display: none;
    position: static;
    padding: 5px;
    width: 90%
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5); /* Sombra em volta do objeto */
}
#titu {
    color: #555;
    text-align: left;
    font-size: 15px;
}
label {
    font-size: 14px;
    color: #666;
}
form {
    float: left;
    margin: 0 0 0 0;
    width: 220px;
/*
    background: -webkit-gradient(linear, 0% 0%, 0% 40%, from(#EEE), to(#FFFFFF));
    background: -moz-linear-gradient(0% 40% 90deg,#FFF, #EEE);
    -webkit-box-shadow:0px 0 50px #ccc;
    -moz-box-shadow:0px 0 50px #ccc;
    box-shadow:0px 0 50px #ccc;
   */
}
textarea {
    width: 220px;
    height: 70px;
    font-size: 13px;
}
input.text {
    width: 220px;
    font-size: 12px;
}
input:hover, textarea:hover {
    background: #eee;
}
input.submit, input.reset {
    font-size: 11px;
    width: 111px;
    margin-top: 10px;
    border: none;

    -webkit-transition: -webkit-box-shadow 0.3s linear;

    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
}
input.submit:hover, input.reset:hover {
    text-transform: uppercase;
    -webkit-box-shadow: 0px 0px 20px #555;
    -moz-box-shadow: 0px 0px 20px #aaa;
    box-shadow: 0px 0px 20px #555;
    cursor:  pointer;
}
