* {
	margin: 0; 
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
       box-sizing: border-box;
}

body {
	font-family: 'open Sans', helvetica ;
	background: url('img/fondo.jpg') ;
	background-size: cover;
	background-attachment: fixed;
}

.contenedor {
	margin: auto;
	width: 100%;	
	display: flex; 
	flex-direction: row;
}


.titulo {
	
	margin: auto;
	margin-left: 20px;
	padding-top: 30px;	
	width: 20%;
	margin-top: 20px;

}

.titulo img{
	
	width: 200px;
	

}


.titb{	
	margin-top: 20px;
	text-align: center;
}


.titb2{	
	margin-top: 120px;
	text-align: center;
}

.temas{	
	margin-top: 60px;
	text-align: center;
}

.temas img{	
	width: 200px;
}


.contenedor1 {
	width: 80%;	
	
}

.cabezote {	
	
	width: 100%;
	margin-left: 10px;
	display: flex;
	flex-direction: column;
    margin-top: 10px;
	
}

.cabezote img{
	width: 90%;
}


.content-all{
    width: 650px;
    height: 430px;
    position: relative;
    display: flex;
    margin: auto;
    margin-top: 5%;
    overflow: hidden;    
    box-shadow: 0 20px 40px 0 black;
}

.content-img{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    display: none;
}

#img001{
    display: block;
}




.content-img:target{
	display: block;
    
}

.content-img img{
    width: 100%;
    height: 100%;
}

.iconl{
    position: absolute;
    top: 210px;
    margin-left: 5px;
    left: 0;
    width: 30px;
    
}




.iconr{
    position: absolute;
    top: 210px;
    margin-right: 5px;
    right: 0;    
    width: 40px;
}



.iconr2{
    position: absolute;
    left: 240px;
    bottom:  0;
    margin-bottom: 5px;
    width: 200px;
}

.content-details{
    position: relative;
    top: -350px;
    width: 500px;
    margin: auto;
    padding: 10px;
    background: rgba(0,0,0,0.5);
    color: white;
    text-align: center;
    font-family: arial;
}

.content-details p{
    margin-top: 10px;
}

.content-details input[type="button"]{
    padding: 6px 40px;
    font-size: 18px;
    margin-top: 10px;
    background: rgba(255, 10, 0, 0.5);
    border-style: none;
    color: white;
    outline: 0px;
    transition: all 300ms;
}

.content-details input[type="button"]:hover{
    background: rgba(0,0,0,0.5);
    cursor: pointer;
    transition: all 300ms;
}

