body{
    margin: 0px;
    padding: 0px;
    background: #fff;
    font-size: 14px;
    font-family: Arial, Verdana, sans-serif;
}

#header{
    width: 100%;
    min-width: 1000px;
    height: 140px;
}

#header #logo{
    width: 122px;
    height: 130px;
    margin: 10px auto;
    background-image: url('logo.jpg') no-repeat;
}

#content{
    width: 100%;
    min-width: 1000px;
    height: 550px;
    background: #156728;
    color: #fff;
    line-height: 1.5;
    border-bottom: 5px solid #2a2722;
}

h2{
    margin: 0px;
    padding: 20px;
    font-size: 20px;
}

p{
    margin: 10px;
    padding: 0px;
}

ul{
    margin: 10px;
}

#footer{
    width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    text-align: right;
}

#footer p{
    font-size: 12px;
    color: #2a2722;
    margin: 0px;
    padding: 10px 0px;
}

#footer{
    display: block;
    float: right;
    background: url('') no-repeat;
    width: 237px;
    height: 90px;
}

.wrap{
    width: 1000px;
    margin: 0 auto;
}

.center{
    text-align: center;
}

.bold{
    font-weight: bold;
}

.small{
    font-size: 11px;
}

.field{
    margin: 10px 0px;
}

.label{
    display: inline-block;
    font-weight: bold;
    width: 150px;
    text-align: right;
    margin-right: 10px;
}

.error{
    display: inline-block;
    margin-left: 5px;
    font-weight: bold;
    color: #ff4040;
}

.error_mess{
    background: #fff;
    border-left: 6px solid #ff4040;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    color: #ff4040;
    font-weight: bold;
    margin: 10px 20px;
    padding: 15px;
}

.success{
    background: #fff;
    border-left: 6px solid #1d8936;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    color: #1d8936;
    font-weight: bold;
    margin: 10px 20px;
    padding: 15px;
}

a{
    color: yellowgreen;
    text-decoration: none;
}

a:hover{
    text-decoration: underline;
}

input[type="text"],select{
    outline: none;
    width: 280px;
    height: 30px;
    padding: 0px 10px;
    background: #bdb19c;
    border: 0px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
}

select{
    width: 300px;
}

input[type="submit"],
a.button{
    margin: 20px 0px;
    width: 70px;
    height: 70px;
    border-radius: 35px;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    background: #2a2722;
    border: 0;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    font-size: 14px;
    outline: none;
}

input[type="submit"]:hover,
a.button:hover{
    background: #2a2722;
}

a.button{
    display: inline-block;
    vertical-align: middle;
    text-decoration: none;
    line-height: 4.9;
    margin-right: 10px;
}

form{
    width: 660px;
    margin: 30px auto;
}