/* Mod forms */
.mod.forms {
    padding: 20px;
    background: #f0f0f0;
    overflow:auto;
 
    /* Border style */
    border: 1px solid #cccccc;
    -moz-border-radius: 7px;
    -webkit-border-radius: 7px;
    border-radius: 7px; 
 
    /* Border Shadow */
    -moz-box-shadow: 2px 2px 2px #cccccc;
    -webkit-box-shadow: 2px 2px 2px #cccccc;
    box-shadow: 2px 2px 2px #cccccc;
}

.mod.forms .wrapper {padding: 7px;}
.mod.forms .title {font-weight: bold;}

/* Mod fieldsets */
.mod.forms .box {}



/* Mod fields */
.mod.forms .field {}
.mod.forms label {
    font-family: Arial, Verdana;
    display: block;
    float: left;
    font-weight: bold;
    margin-right:10px;
    text-align: right;
    width: 300px;
    line-height: 25px;
    font-size: 15px;
}
.mod.forms .text, .mod.forms .textarea {
    font-family: Arial, Verdana;
    font-size: 15px;
    padding: 5px;
    border: 1px solid #b9bdc1;
    width: 300px;
    color: #797979;
}

.mod.forms textarea {
    min-height: 150px;
    resize: vertical;
}

.mod.forms input:focus, .mod.forms textarea:focus {background-color: #aaffaa}
.mod.forms input:error {background-color: #ffaaaa}

.mod.forms input[type="submit"] {
    margin:10px 55px 10px 0;
    font-weight: bold;
    line-height: 1;
    padding: 6px 10px;
    cursor:pointer;
    color: #fff;
 
    text-align: center;
    text-shadow: 0 -1px 1px #64799e;
 
    /* Background gradient */
    background: #a5b8da;
    background: -moz-linear-gradient (top, #a5b8da 0%, #7089b3 100%);
    background: -webkit-gradient (linear, 0% 0%, 0% 100%, from(#a5b8da), to(#7089b3));
 
    /* Border style */
    border: 1px solid #5c6f91;
    -webkit-border-radius: 10px;
       -moz-border-radius: 10px;
            border-radius: 10px;
 
    /* Box shadow */
    -webkit-box-shadow: inset 0 1px 0 0 #aec3e5;
       -moz-box-shadow: inset 0 1px 0 0 #aec3e5;
            box-shadow: inset 0 1px 0 0 #aec3e5;    
    
}

/* Captcha */
#recaptcha_widget_div {float: left;}