@charset "utf-8";
/* CSS Document */

.post{
	background: rgba(255, 255, 255, 0.93);
	width: 98%;
	padding: 1%;
	height: 230px;
	border-radius: 10px;
	margin: 5px 0px;
	text-align: left;
	overflow: hidden;
	border: 2px dotted #00A2F4;
	}
.post:hover{
	-o-box-shadow: 1px 1px 12px #555;
	-icab-box-shadow: 1px 1px 12px #555;
	-khtml-box-shadow: 1px 1px 12px #555;
	-moz-box-shadow: 1px 1px 12px #555;
	-webkit-box-shadow: 1px 1px 12px #555;
	box-shadow: 1px 1px 12px #555;
	}
.post h3{
	margin: 10px 0px;
	font-size: 19px;
	font-family: inherit;
	color: #00A2F4;
	}
.post img{
	margin: 0px 5px 0px 0px;
	float: left;
	width: 250px;
	height: 155px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	border: 7px solid #00A2F4;
	}
.post p{
	text-align: justify;
	margin: 0px 0px;
	font-size: 15px;
	line-height: 20px;
	}
.text{
	height:calc(100% - 89px);
	overflow: hidden;
	font-weight: normal;
	}
.butt{
	float: right;
	margin: 5px 0px 0px 0px;
	}


/* Responsive */
@media all and (min-width: 0px) and (max-width: 560px) {
	.post{
	height:auto;
	text-align: center;
	}
	.post img{
	margin: 0px auto 0px auto;
	float: none;
	}
	.text{
	height: 100px;
	margin: 5px 0px;
	}
}
@media all and (min-width: 0px) and (max-width: 350px) {
	.post h3 {
	font-size: 16px;
	}
	.post img{
	width: 100%;
	}
}