#news_img {
    width: 100%;
    background-size: cover;
    height: 500px;
    background-position: center;
}

article.post {
	background-color: transparent;
	padding: 0px;
	border-radius: 0px;
	text-align: left;
	width: 100%;
	float: left;
}

.news_img {
	display: none;
}

#article-news {
	width: 80%;
	margin: auto;
	box-shadow: 0px 10px 11px -7px rgba(0,0,0,0.32);
	height: auto;
	border-radius: 10px;
	margin-bottom: 20px;
	max-width: 1000px;
	display: flex;
}
#article-news:hover {
	opacity: 0.9;
}


#news_img_index_left {
	background-size: cover;
	height: auto;
	background-position: center;
	width: 50%;
	float: left;
	border-radius: 10px 0px 0px 10px;
}



#news_img_index_right {
	background-size: cover;
	height: auto;
	background-position: center;
	width: 50%;
	float: right;
	border-radius: 0px 10px 10px 0px;
	order: 1;
}


#news_content_index_left {
	width: 50%;
	float: left;
	height: auto;
	background-color: #d5ddb1;
	border-radius: 10px 0px 0px 10px;
}


#news_content_index_right {
	width: 50%;
	float: right;
	height: auto;
	border-radius: 0px 10px 10px 0px;
	background-color: #d5ddb1;
}

#article-news > div {
	padding: 20px;
}

#article-news > div > h2 > a {
	font-family: Vanlose;
	font-size: 36px;
	color: #454545;
}

#article-show {
	width: 75%;
	margin: auto;
}

#article-show > p {
	font-size: 18px;
	text-align: justify;
}