* {
 font-family: "Times New Roman", Georgia, Serif;
 margin: 0;
 padding: 0;
 box-sizing: border-box;
 -moz-box-sizing: border-box;
}
h1 {
 margin: 1em 0;
 text-align: center;
}
img{
	height:auto;
}
#container {
 margin: 0 auto;
 width: 100%; /* Ancho del contenedor */
}
#container input {
 height: 2.5em;
 visibility: hidden;
}
#container label {
 background: #f9f9f9; /* Fondo de las pestaņas */
 border-radius: .25em .25em 0 0;
 color: #666666; /* Color del texto de las pestaņas */
 cursor: pointer;
 display: block;
 float: left;
 font-size: 1em; /* Tamaņo del texto de las pestaņas */
 height: 2.5em;
 line-height: 2.5em;
 margin-right: .25em;
 padding: 0 1.5em;
 text-align: center;
}
#container input:hover + label {
 background: #33cccc; /* Fondo de las pestaņas al pasar el cursor por encima */
 color: #ffffff; /* Color del texto de las pestaņas al pasar el cursor por encima */
}
#container input:checked + label {
 background: #33cccc; /* Fondo de las pestaņas al presionar */
 color: #ffffff; /* Color del texto las pestaņas al presionar */
 position: relative;
 z-index: 6;
}
#content {
 background: #ffffff; /* Fondo del contenido */
 border-radius: 0 .25em .25em .25em;
 min-height: 150em; /* Alto del contenido */
 position: relative;
 width: 800px;
 z-index: 5;
border: 2px solid #33cccc;
}
#content div {
 opacity: 0;
 padding: 1.5em;
 position: absolute;
 z-index: -100;
}
#content-1 p {
 clear: both;
 margin-bottom: 1em;
}
#content-1 p.left img {
 float: left;
 margin-right: 1em;
}
#content-1 p.last {
 margin-bottom: 0;
}
#content-2 p,
#content-2 ul {
 margin-bottom: 1em;
}
#content-2 ul {
 margin-left: 2em;

}
#content-3 p,
#content-3 ul {
 margin-bottom: 1em;
}
#content-3 ul {
 margin-left: 2em;

}
#content-4 p {
 clear: both;
 margin-bottom: 1em;
}
#content-4 p.left img {
 float: left;
 margin-right: 2em;
}
#content-4 p.last {
 margin-bottom: 0;
}
#container input#tab-1:checked ~ #content #content-1,
#container input#tab-2:checked ~ #content #content-2,
#container input#tab-3:checked ~ #content #content-3,
#container input#tab-4:checked ~ #content #content-4 
{
 opacity: 1;
 z-index: 100;
}
