/* Forms styles */
.form {

	padding-top:8px;

}

label
{

    display: block;
    width: auto;
    margin-right: 6px;
    text-align: left;


	float:left;

}
input[type="text"], select, textarea {
    width: 90%;
    outline: none;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
    border: 1px solid #BBB;
    background: #ffffff;
	padding:10px;

    -webkit-transition: -webkit-box-shadow 0.6s ease-out;
    -moz-transition: -moz-box-shadow 0.6s ease-out;
    -o-transition: box-shadow 0.6s ease-out;
    transition: box-shadow 0.6s ease-out;
}
select
{
    width: 190px;
}
textarea
{
    height: 110px;
}
input:hover, select:hover, textarea:hover {
    -moz-box-shadow: 0px 0px 3px #600;
    -webkit-box-shadow: 0px 0px 3px #600;
    box-shadow: 0px 0px 3px #600;
}
input:focus, select:focus, textarea:focus {
    -moz-box-shadow: 0px 0px 6px #600;
    -webkit-box-shadow: 0px 0px 6px #600;
    box-shadow: 0px 0px 6px #600;
}
.error {
    color:#FF0000;
}
/* eof Forms style */

button {

 width:auto;
 height:45px;
 padding:10px;
 border-radius:1px;
 background-color:#522d13;
 
 float:left;
 font-size:13px;
 color:#FFFFFF

}