/* CSS Document */
	body{
		background-color:#f4f4f4;
		overflow:hidden;
	}
	#header{
		height:100px;
	}
	#dheader h1{
		font-size:24px;
		font-weight: bold;
		margin-left:44px;
		margin-top:-15px;
	}
	#dheader img{
		position:relative;
		width:70px;
		margin-left:370px;
		margin-top:-55px;
	}
	.container{
		margin-top:-80px;
		margin-left:20px;
		width:110%;
	}
    .post-slide{
		margin:0 10px;
	}
	
	.post-slide .post-info{
		padding: 5px 0;
		margin: 0;
		list-style:none;
	}
	.post-slide .post-info li{
		display: inline-block;
		margin: 0 5px;
	}
	.post-slide .post li i{
		margin-right:8px;
	}
	.post-slide .post-info li a{
		font-size:11px;
		font-weight:bold;
		color:#7e828a;
		text-transform:uppercase;
	}
	
	.post-slide .post-info li a:hover{
		color:deepskyblue;
		text-decoration:none;
	}
	
	.post-slide .post-img{
		position:relative;
	}
	
	.post-slide .post-img:before{
		content:"";
		width:80%;/*ancho sombreado*/
		height:100%;
		position:absolute;
		top:0;
		left:0;
		opacity:0;
		background:rgba(0,0,0,0.6);
		transition: opcity 0.40s linear 0s;
	}
	.post-slide:hover .post-img:before{
		opacity: 1;
	}
	
	.post-slide .post-img img{
		width:80%;/*ancho imagen*/
		height:auto;
	}
	
	.post-slide .read{
		position:absolute;
		bottom:30px;
		left:50px;
		font-size:14px;		
		color: white;
		text-transform: capitalize;
		opacity:0;
		transition: all 0.40s linear 0s;
	}
	
	.post-slide .post-content{
		padding:10px 0;/*Espacio imagen/titulo nota*/
		position:relative;
	}
	/*circulo*/
	.post-slide .post-author{
		width:50px;
		height: 50px;
		border-radius:50%;
		position:absolute;
		top:-30px;
		right:13%;
		overflow:hidden;
		border:4px solid white;
	}
	
	.post-slide .post-author img{
		width:100%;
		height:100%;
	}
	
	.post-slide .post-title{
		font-size:14px;
		font-weight: bold;
		color: deepskeyblue;
		margin: 0 0 2px 0;
		text-transform: uppercase;
		transition: all 0.30s linear 0s;
	}
	
	.post-slide .post-descripcion{
		font-size:13px;
		color:#555;
		max-width:410px;
		margin-bottom:auto;
	}

/* lightbox */
.lightbox{
	display:none;
}
.lightbox:target{
	display:block;
	z-index:99;
	position:fixed;
	width:100%;
	height:100%;
	top:0;
	left:0;
	background: rgba(0,0,0,0.8);
	text-align:center;
}
.imagenes img {
	width:35%;
}
.lightbox .imagenesuno img{
	width:10%;
}
.cerrar{
	display:block;
	background: #fff;
	width:25px;
	height:25px;
	margin:10px auto;
	text-align:center;
	text-decoration:none;
	font-size: 25px;
	color:#000;
	padding:5px, 5px, 5px, 5px;
	border-radius:50%;
	line-height:25px;
}
.lightbox h1{
	font-family:Arial, Helvetica, sans-serif;
	font-size:14px;
	color:#fff;
	max-width:95%;
	margin-left:10%;
	margin-right:10%;
	text-align:justify;
}
.lightbox h2{
	font-family:Arial, Helvetica, sans-serif;
	font-size:13px;
	color:#fff;
	max-width:95%;
	margin-left:10%;
	margin-right:10%;
	text-align:justify;
}
.lightbox h3{
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	color:#fff;
	max-width:90%;
	margin-left:10%;
	margin-right:10%;
	text-align:justify;
}
.lightbox h4{
	font-family:Arial, Helvetica, sans-serif;
	font-size:11px;
	color:#fff;
	max-width:95%;
	margin-left:5%;
	margin-right:5%;
	text-align:justify;
}
