@charset "UTF-8";
/* CSS Document */

/* RESET */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-weight: inherit;
    font-style: inherit;
    font-size: 100%;
    font-family: inherit;
    vertical-align: baseline;}

/* remember to define focus styles! */
:focus {
    outline: 0;}

body {
    line-height: 1;
    color: black;
    background: white;}

ol, ul {
    list-style: none;}

/* tables still need 'cellspacing="0"' in the markup */
table{
    border-collapse: separate;
    border-spacing: 0;}

caption, th, td {
    text-align: left;
    font-weight: normal;}

blockquote:before, blockquote:after,
q:before, q:after {
    content: "";}

blockquote, q {
    quotes: "" "";}
	
/* FIN DEL RESET */

/* DIVs*/

body{
	margin:0;
	padding:0;
	background-image:url(../img/bg.png);
	}	
	
#wrapper{
	width:950px;
	height:auto;
	position:relative;
	margin:auto;
	}
	
/* -- header -- */	
	
	#header{
		width:950px;
		height:108px;
		background-image:url(../img/header_contacto.png);
		position:relative;
		margin:auto;
		}
		
		#logo{
			width:300px;
			height:80px;
			float:left;
			padding-top:3px;
			padding-left:10px;
			}
			
		#nav_container{
			width:580px;
			height:19px;
			margin-top:49px;
			float:right;
			}
			
			.nav{
				list-style:none;
				padding:0px;
				margin:0px;
				}
				
			.nav li{
				display:inline;
				}
				
				.button{
					padding-left:24px;
					padding-right:24px;
					float:left;
					}
				
			.nav li a{
				text-decoration:none;
				text-align:center;
				font-family: 'Lato', sans-serif;
				font-weight:300;
				font-size:14px;
				color:#FFF;
				}
			
			.nav li a:hover{
				color:#CCC;
				}
				
			.gap{
				padding:0px;
				width:2px;
				height:19px;
				background-image:url(../img/bar_menu-01.png);
				float:left;
				}
				
/* --End of header-- */
	


	
/* --Content CSS-- */
		
	#index_content{
		width:920px;
		height:auto;
		background:#fff;
		float:left;
		padding:15px;
		text-align:center;
		}
		
		.info{
			width:450px;
			height:250px;
			float:left;
			text-align:left;
			padding:15px;
			}
			
		.formulario{
			width:400px;
			height:335px;
			float:right;
			padding:15px;
			}
			
/* --Formulario CSS-- */

.contacto{
	text-align:left;
	}
	
.contacto label{
    display: inline-block; /* esto es para que el label se sobreponga a la caja de texto */
	font-family:'Lato', sans-serif;
	font-size:18px;
	font-weight:900;
	color:#371253;
	width:100px;
	float:left;
	margin: 5px 0;
	}
	
.contacto div{
    margin-bottom: 15px; /* esto los separara un poco */
	}
	
.contacto input[type='text'], .contacto textarea, .contacto input[type='email'] {
    padding: 7px 6px;
    width: 280px; /* una longitud definida */
    border: 1px solid #371253;
	border-radius:4px;
    resize: none; /* esta propiedad es para que el textarea no sea redimensionable */
    /* box-shadow:0 0 0 2px #CCC; */
	}
	
.contacto select {
    padding: 7px 6px;
    width: 295px; /* una longitud definida */
	height:30px;
    border: 1px solid #371253;
	border-radius:4px;
	}

.contacto input[type='text']:focus, .contacto textarea:focus, .contacto input[type='email']:focus, .contacto select:focus{
    outline: none; /* reset especifico para Chrome/Safari */
    box-shadow:0 0 0 2px #DCCEEA;
	}
	
.contacto input[type='submit']{
	width:78px;
	height:23px;
	background-image:url(../img/boton_enviar-01.png);
	display:block;
	border:none;
	margin-left:100px;
}

.contacto input[type='submit']:hover{
	width:78px;
	height:23px;
	background-image:url(../img/boton_enviar-02.png);
	display:block;
	border:none;
}

.error {
    background-color: #371253;
    padding: 6px 12px;
    border-radius: 4px;
    color: white;
    font-weight: 400;
    margin-left: 16px;
    margin-top: 6px;
    position: absolute;
	font-family:'lato', sans serif;
	font-size:12px;
	}
	
.error:before { /* Este es un truco para crear una flechita */
    content: '';
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 8px solid #371253;
    border-left: 8px solid transparent;
    left: -16px;
    position: absolute;
    top: 4px;
	}

		
/* --Footer CSS-- */

	#footer{
		width:935px;
		height:20px;
		background-color:#000;
		color:#CCC;
		float:left;
		margin:auto;
		position:relative;
		font-family: 'Lato', sans-serif;
		font-size:9px;
		padding-top:10px;
		padding-left:15px
		}

/* TEXTOS */


h1{
	font-family:'Lato', sans-serif;
	font-size:24px;
	font-weight:900;
	color:#371253;
	}
	
h2{
	font-family:'Lato', sans-serif;
	font-size:18px;
	font-weight:900;
	color:#371253;
	margin-bottom:5px;
	}
	
h3{
	font-family:'Lato', sans-serif;
	font-size:14px;
	font-weight:400;
	color:#666;
	line-height:17px;
	}


