@charset "UTF-8";
/* CSS Document */
 
.custom .optin_form input {
    padding: 10px;
    margin-bottom: 1em;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
}

.optin_form input[type="text"] {
	background: #fff;
	color: #666;
	border: 1px solid #c8c8c8;
	font-size: 14px;
}

.optin_form input[type="submit"] {
    color: #fff;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, .5);
    border: 0;
	font-size: 14px;
    background: -moz-linear-gradient(top, #2c52a9 0%, #294b97 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #2c52a9), color-stop(1, #294b97));
    background: -webkit-linear-gradient(top, #2c52a9 0%, #294b97 100%);
    background: linear-gradient(top, #2c52a9 0%, #294b97 100%);
}

.optin_form input[type="submit"]:hover {
    background: linear-gradient(top, #c2c2c2 0%, #aeaeae 100%);
    background: -moz-linear-gradient(top, #c2c2c2 0%, #aeaeae 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #c2c2c2), color-stop(100%, #aeaeae));
    background: -webkit-linear-gradient(top, #c2c2c2 0%, #aeaeae 100%)
}

