*{margin:0; padding:0;}
#contenedor {
margin: 40px auto;
width: 100%;  /* Ancho del contenedor */
box-sizing: border-box;
-moz-box-sizing: border-box;
}

#contenedor input {
height: 32px;
visibility: hidden;
text-align:center;


}

#contenedor label {
float:right;
cursor: pointer;
font-size: 20px;  /* Tamaño del texto de las pestañas */
line-height: 40px;
height: 40px;
padding: 0 20px;
display: block;
color: #000;  /* Color del texto de las pestañas */
text-align: center;

background: #EBE7E7;  /* Fondo de las pestañas */
margin-left: 25px;
}

#contenedor input:hover + label {
background: #EBE7E7;  /* Fondo de las pestañas al pasar el cursor por encima */
color: #000;  /* Color del texto de las pestañas al pasar el cursor por encima */

}

#contenedor input:checked + label {
background:#EBE7E7;  /* Fondo de las pestañas al presionar */
color: #000; /* Color de las pestañas al presionar */
z-index: 6;
line-height: 40px;
height: 35px;
position: relative;
-webkit-transition: .1s;
-moz-transition: .1s;
-o-transition: .1s;
-ms-transition: .1s;
font-weight:700;
}

.content {
background: #FFF;  /* Fondo del contenido */
position: relative;
width: 100%;
height: 250px;  /* Alto del contenido */
padding: 30px 0px ;
z-index: 5;
border-radius: 0 5px 5px 5px;
}

.content div {
	width:100%;
position: absolute;
z-index: -100;
opacity: 0;
transition: all linear 0.1s;
}

#contenedor input.tab-selector-1:checked ~ .content .content-1,
#contenedor input.tab-selector-2:checked ~ .content .content-2,
#contenedor input.tab-selector-3:checked ~ .content .content-3,
#contenedor input.tab-selector-4:checked ~ .content .content-4 {
    z-index: 100;
    opacity: 1;
	background:#EDF5F8;
	padding:20px 20px;
    -webkit-transition: all ease-out 0.2s 0.1s;
-moz-transition: all ease-out 0.2s 0.1s;
-o-transition: all ease-out 0.2s 0.1s;
-ms-transition: all ease-out 0.2s 0.1s;
}
#container{
	width:100%; height:auto; background-color:transparent; margin:auto; max-width:1366px;}
