/* Here you will find only contact form CSS*/

.contact_form {
    width: 400px;
    margin-left: 90px;
    margin-top: 30px;
    float: left;
}

label {
    color: #5e5e5e;
    font-size: 13px;
    text-shadow: 0px 1px 0px #ffffff;
    display: block;
    margin-left: 5px;
}

label.error {
    color: #9f0606;
    font-size: 10px;
    margin-left: 9px;
    margin-top: -16px;
    position: absolute;
    text-shadow: 0px 1px 0px #e5e5e5;
}

.name, .email, .price_field {
    float: left;
}

.email {
    margin-right: 10px;
    margin-left: 10px;
}

input.small {
    width: 120px;
    height: 30px;
    background-image: url("../img/transparent_bg2.png");
    background-color: transparent;
    border: 1px solid #e3e3e3;
    -moz-box-shadow: inset 0 2px 3px #878787;
    -webkit-box-shadow: inset 0 2px 3px #878787;
    box-shadow: inset 0 2px 3px #878787;
    -moz-border-radius: 60px;
    -webkit-border-radius: 60px;
    border-radius: 60px;
    padding-left: 8px;
    padding-right: 8px;
    font-size: 12px;
    color: #464646;
}

input.small#name {
    width: 120px;
}
input.small#price {
    width: 58px;
}

textarea {
    width: 354px;
    height: 92px;
    background-image: url("../img/transparent_bg2.png");
    background-color: transparent;
    border: 1px solid #e3e3e3;
    -moz-box-shadow: inset 0 2px 3px #878787;
    -webkit-box-shadow: inset 0 2px 3px #878787;
    box-shadow: inset 0 2px 3px #878787;
    -moz-border-radius: 12px;
    -webkit-border-radius: 12px;
    border-radius: 12px;
    display: block;
    padding: 8px;
    font-size: 12px;
    color: #464646;
}

input.submit {
    font-family: "Oleo Script";
    width: 70px;
    color: #f6f6f6;
    font-size: 20px;
    margin-top: 5px;
    background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#b4b4b4), to(#8e8e8e));
    background: -webkit-linear-gradient(top, #b4b4b4, #8e8e8e);
    background: -moz-linear-gradient(top, #b4b4b4, #8e8e8e);
    background: -ms-linear-gradient(top, #b4b4b4, #8e8e8e);
    background: -o-linear-gradient(top, #b4b4b4, #8e8e8e);
    -moz-box-shadow: 0px 1px 0px #ffffff;
    -webkit-box-shadow: 0px 1px 0px #ffffff;
    box-shadow: 0px 1px 0px #ffffff;
    text-shadow: 0px 1px 2px #1e1e1e;
    -moz-border-radius: 54px;
    -webkit-border-radius: 54px;
    border-radius: 54px;
    outline: 0;
    position: absolute;
}

input.submit:active {
    margin-top: 6px;
}

p.success_message {
    float: right;
    margin-top: 6px;
    margin-right: 46px;
    text-align: right;
    color: #3e7800;
    text-shadow: 0px 1px 0px #ffffff;
	display: none;
}