label {
display:block;
margin-top:20px;
color:#078809;
}
.formulario {
display:block;
margin:0 auto;
width:510px;
font-family:cursive;
}
form {
margin:0 auto;
max-width:400px;
}

input, textarea {
width:380px;
min-height:27px;
background:#666666;
border:2px solid #f6f6f6;
padding:10px;
margin-top:5px;
font-size:14px;
color:#ffffff;
border-radius: 9px;
}

textarea {
height:150px;
}

#submit {
width:85px;
height:35px;
border:none;
margin-top:20px;
cursor:pointer;
}
#submit:hover {
    border:solid 1px #000;
    color: #000;
}
#celdaBtn{
    text-align: center;
}
#cuerpo{
	max-width: 1200px;
	margin: 0 auto;
}
#header{
	max-width: 1200px;
}
#imgHeader{
	width: 100%;
	border-radius: 6px;
}
#titulo{
	text-align: center;
	font-family: cursive;
	color: rgb(172, 39, 40);
}
.clsTitulo{
    text-align: center;
    font-family: cursive;
    color: rgb(172, 39, 40);
}
.clsSubTitulo{
    padding-left: 20px;
    font-family: cursive;
    color: rgb(172, 39, 40);
}
h3{
    padding-left: 30px;
    font-family: cursive;
    color:#078809;
}
#contenido{
	box-shadow: 0px 0px 7px 7px rgba(0,0,0,0.75);
	max-width: 1200px;
	background-color: #FFF;
	border-radius: 6px;
}
#contenidoForm{
    box-shadow: 0px 0px 7px 7px rgba(0,0,0,0.75);
    max-width: 1200px;
    background-color: #FFF;
    border-radius: 6px;
}
#imagen{
	text-align: center;	
}
#imagen img{
	border-radius: 52px;	
	width: 30%;
}
.clsImg{
    float: right;
    padding: 50px;
}
.clsImg img{
    border-radius: 30px;   
}
.clsImgIzq{
    float: left;
    padding: 50px;
}
.clsImgIzq img{
    border-radius: 30px;   
}
#slider img{ 
    max-height: 310px;   
    width: 60%;
}
#auxiliar{
    max-width: 1200px;
}
.clsParrafo{
	margin: 0 auto;
	width: 90%;
	font-size: 18px;
	font-style: italic;
}
#footer{
	text-align: center;
	font-family: monospace;
	font-weight: bold;
	font-size: 14px;
}
nav{
    /*Bordes redondeados*/
    -webkit-border-radius:10px;/*Para chrome y Safari*/
    -moz-border-radius:10px;/*Para Firefox*/
    -o-border-radius:10px;/*Para Opera*/
    border-radius:10px;/*El estandar por defecto*/
    background-image: -webkit-gradient(linear, left top, left bottom, from(#FFA024), to(#A42F2F));/*Para chrome y Safari*/
    /*Degradados*/
    background-image: -moz-linear-gradient(top center, #FFA024, #A42F2F);/*Para Firefox*/
    background-image: -o-linear-gradient(top, #FFA024, #A42F2F);/*Para Opera*/
    background-image: linear-gradient(top, #FFA024, #A42F2F);/*El estandar por defecto*/
    overflow:hidden;
    padding:10px;
    max-width:1200px;

}
nav ul{
    list-style:none;
    margin:0 10px 0 10px;
    padding:0;
}
nav ul li{
    /*Bordes redondeados*/
    -webkit-border-radius:5px;/*Chrome y Safari*/
    -moz-border-radius:5px;/*Firefox*/
    -o-border-radius:5px;/*Opera*/
    border-radius:5px;/*Estandar por defecto*/
    float:left;
    font-family:Arial, Helvetica, sans-serif;
    font-size:16px;
    margin-right:10px;
    text-align:center;
    /*Sombras para texto, los mismos parametros que box-shadow*/
    text-shadow: 0px 1px 0px #FFF;
}
nav ul li:hover{
    /*Degradado de fondo*/
    background-image: -webkit-gradient(linear, left top, left bottom, from(#A42F2F), to( #FFA024));/*Chrome y Safari*/
    background-image: -moz-linear-gradient(top center, #A42F2F, #FFA024);/*Firefox*/
    background-image: -o-linear-gradient(top, #A42F2F, #FFA024);/*Opera*/
    background-image: linear-gradient(top, #A42F2F, #FFA024);/*Estandar por defecto*/
    /*Sombras*/

    border:1px solid #FFF;
}
nav ul li a{
    color:#FFF;
    display:block;
    padding:10px;
    text-decoration:none;
    /*Transiciones*/
    -webkit-transition: 0.4s linear all;
    -moz-transition: 0.4s linear all;
    -o-transition: 0.4s linear all;
    transition: 0.4s linear all;
}
nav ul li a:hover {
    color:#000;
}