@import url('reset.css');

/* General Demo Style */
body{
	background: #ddd;
	font-family:Arial, sans-serif;
	font-size: 16px;
}
.container{
	width: 100%;
	position: relative;
	overflow:hidden;
}
.clr{
	clear: both;
}
h1.main{
	font-size: 30px;
	position:relative;
	font-weight: 400;
	text-shadow: 0px 1px 1px rgba(0,0,0,0.2);
    padding: 10px;
	text-align: center;
	z-index: 1000;
	-webkit-animation: appear 0.6s ease-in-out 6s backwards;
	-moz-animation: appear 0.6s ease-in-out 6s backwards;
}
/* Header Style */
.header{
	font-family:'Arial Narrow', Arial, sans-serif;
	font-size: 11px;
	opacity: 0.9;	
	z-index: 9999;
	position: relative;
	width:100%;
}

.header span.right{
	float: right;
	 
}

.header span.right a{
	float: none;
	display: inline;
	width: 100%;
}
.avanzar{
  width: 100%;
  height: 50px;
 
}
  
.regresar {
  width: 100%;
  height: 50px;
}
	
	

footer{	
	width: 100%;
	bottom: 0;
	background-color:#23a449;
	z-index: 2000;
	/*position: fixed;*/
}

footer .titulopie{
  color: #fff;
  font-size: 17px;
  margin: 20px 0px 0px 10px;
  bottom: 0;
  z-index: 2000;		
}

footer p{
	color: #fff;
	font-size: 11px;
	width: auto!important;
	margin: 10px 0px 0px 10px;	
		z-index: 2000;
}

@-webkit-keyframes appear{
	0%{
		opacity: 0;
	}
	100%{
		opacity: 1;
	}
}
@-moz-keyframes appear{
	0%{
		opacity: 0;
	}
	100%{
		opacity: 1;
	}
}