body {
    width: 1024px;
    margin: 0 auto 20px auto;
    background-color: #DFF2FF;
    font-family: Arial, "Times New Roman", Times, sans-serif;
}

#global {
    width: 1024px;
    background-color: #DFF2FF;
    margin: 0 auto;
}

#header {
    background-image: url(images/montageban.jpg);
    background-repeat: no-repeat;
    width: 1024px;
    height: 250px;
}

#menu {
    width: 1024px;
}

#menu > ul {
    list-style-type: none;
    width: 1024px;
    height: 50px;
}

#menu > ul li {
    display: block;
    float: left;
    text-align: center;
    position: relative;
}

#menu ul li a {
    display: block;
    text-decoration: none;
    color: #efefef;
    height: 50px;
    padding: 0 30px;
    line-height: 50px;
    transition: 0.4s ease all;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

#menu ul li a:hover {
    background: #0C439E;
}

#menu ul li ul {
    display: none;
}

#menu ul li:hover ul {
    display: block;
    position: absolute;
    top: 50px;
    left: 0;
    width: 250px;
}

#menu ul li:hover ul li {
    display: block;
    float: none !important;
}
#menu ul li:hover ul li a {
    display: block;
    float: none !important;
}

#menu ul li.last a {
    border-right: none !important;
}

#corps {
    width: 1024px;
    background-color: #DFF2FF;
    border-left: solid 1px #a3c0d5;
    border-right: solid 1px #a3c0d5;
    padding: 30px 0 0 0;
}

#corps img.titleImg {
    display: block;
    width: 600px;
    margin: 0 auto;
}

#corps ul.firstUl {
    width: 1024px;
    text-align: center;
    margin: 20px 0 20px 0;
    padding: 0;
}

#corps ul.firstUl li strong {
    font-weight: bold;
}

#corps h1.homeTitle {
    width: 600px;
    height: 200px;
    overflow: hidden;
    text-indent: -5555px;
    background: url(images/elevage.jpg) no-repeat center;
    margin: 0 auto;
}

#corps h1 {
    text-align: center;
    color: blue;
}

#corps a {
    text-decoration: none;
}

#corps ul {
    width: 80%;
    margin: 15px auto 15px auto;
}

#corps p {
    width: 80%;
    margin: 15px auto 15px auto;
}

#corps h3 {
    font-size: 18px;
    font-weight: bold;
    padding: 0 0 0 10px;
    margin: 20px auto 10px auto;
    width: 80%;
}

#corps h2 {
    font-size: 24px;
    font-weight: bold;
    margin: 20px auto 10px auto;
    width: 80%;
    border-bottom: 2px solid #0504F6;
    line-height: 30px;
    text-align: left !important;
    color: #0504F6;
}

#corps a:hover {
    text-decoration: underline;
}

#corps img.tampon {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    display: block;
}

#corps ul.porte {
    width: 80%;
    margin: 0 auto 10px auto;
}

#corps ul.porte li {
    display: block;
    width: 200px;
}

#corps ul.porte li a {
    display: block;
    width: 100%;
    text-decoration: none;
    color: #292929;
    height: 30px;
    line-height: 30px;
    transition: 0.4s ease all;
    padding-left: 10px;
    color: #0C439E;
    font-size: 20px;
}

#corps ul.porte li a:hover {
    background: #0C439E;
    color: #efefef;
}

#corps a:visited {
    text-decoration: underline;
    color: blue;
}

#footer {
    width: 1024px;
    margin: 20px 0 0 0;
    text-align: center;
    font-size: 9px;
    border-top: 1px solid rgba(0, 0, 0, 0.5);
    padding: 10px 0 0 0;
}

#form {
    width: 50%;
    margin: 0 auto;
    padding: 10px;
}

#form label {
    display: block;
    width: 150px;
    margin: 15px 0 10px 0;
}

#form input, #form textarea {
    display: block;
    width: 80%;
    margin: 0px auto 0px auto;
    border: 2px solid #666;
}

#form input:focus, #form textarea:focus {
    border: 2px solid #0C429C;
}

.gradient {
    /* Anciens navigateurs */
    background: #216BCE url("gradient-bg.png") repeat-x top;
    -o-background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    -webkit-background-size: 100% 100%;
    background-size: 100% 100%;
    /* Navigateurs récents */
    background: -webkit-gradient(
            linear,
            left top, left bottom,
            from(#093f97),
            to(#216BCE)
    );
    background: -webkit-linear-gradient(
            top,
            #093f97,
            #216BCE
    );
    background: -moz-linear-gradient(
            top,
            #093f97,
            #216BCE
    );
    background: -o-linear-gradient(
            top,
            #093f97,
            #216BCE
    );
    background: linear-gradient(
            top,
            #093f97,
            #216BCE
    );
}