/*#content>h1{
	display:block;
	padding:20px;
	text-align:right;
	font-size:32px;
	color:#333;
}*/
/**/
.article_preview{
	display:block;
	margin:10px;
	border-radius:10px;
	box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
	background: #fff;
}
.article_preview:last-child{
	border-bottom:none;
}
.article_preview>a{
	display:flex;
	position: relative;
	flex-wrap:wrap;
	padding:10px;
	border-radius:10px;
	text-decoration:none;
	color:#333;
	transition:0.2s;
}
.article_preview>a:hover{
	background-color:#00000008;
}
.article_preview>a:before{
	content: "";
    position: absolute;
    z-index: -1;
    left: 51%;
    right: 51%;
    bottom: 0;
    background: #084a83;
    height: 2px;
    transition: .3s ease-out;
    transition-property: left,right;
    z-index: 1;
}
.article_preview>a:hover:before{
    left: 5px;
    right: 5px;
}
.article_preview>a:visited{
	color:#666;
}
.article_preview>a span{
	display:block;
}
/**/
.article_preview>a>span.date{
	min-width:50px;
	padding:10px;
	color:#999;
}
.article_preview>a>span.date>span{
	display:block;
	text-align:center;
	font-weight:bold;
}
.article_preview>a>span.date>span:nth-child(1){
	padding-top:4px;
	font-size:50px;
	line-height:40px;
}
.article_preview>a>span.date>span:nth-child(2),.article_preview>a>span.date>span:nth-child(3){
	font-size:14px;
	line-height:20px;
}
/**/
.article_preview>a span.title{
	text-align:right;
	font-size:18px;
	/*line-height:40px;*/
	font-weight:bold;
	font-family: 'DroidSansArabic',Calibri,Arial!important;
}
.article_preview>a span.brief{
	font-size:14px;
}
/**/
.article_preview>a span.image{
	display: none;
	/*flex:1;
	min-width: 200px;
	max-width: 350px;
	height:250px;
	background-position:center;
	background-size:cover;*/
}
/**/
.article_preview>a span.text{
	flex:1;
	min-width:200px;
	margin-right:10px;
}
.article_preview>a span.writer span{
	display:inline-block;
	width:50px;
	height:50px;
	border-radius:25px;
	margin-left:10px;
	background-position:center;
	background-size:cover;
	vertical-align:middle;
}
/**/
.pager_container{
	margin:10px;
    text-align:center;
}
a.pager_button,a.pager_button:visited{
	display:inline-block;
	padding:10px;
	border-radius:10px;
	margin:5px;
	background:#000;
	color:#fff;
	box-shadow:#666 0px 0px 5px;
	border:none;
	text-decoration:none;
	cursor:pointer;
	line-height:20px;
}
a.pager_button[selected=selected]{
	text-decoration:underline;
}
a.pager_button:hover{
	background:#333;
	color:#fff;
	text-decoration:none;
}
/**/
/**/
.article_head{
	/*background: #dce5e8;*/
}
.article_date {
    float: right;
    overflow-y: hidden;
    padding-right: 5px;
    padding-left: 5px;
	border-radius: 5px;
    margin-top: 10px;
    margin-right: 10px;
    background: rgba(0,0,0,0.8);
    color: #fff;
}
.article_title {
    clear: both;
    padding: 10px;
    direction: rtl;
    text-align: right;
    color: #084a83;
    font-family: 'DroidSansArabic',Calibri,Arial!important;
    font-size: 30px;
}
/*.article_writer {
    height: 20px;
    padding: 10px;
    padding-right: 10px;
    background: #006838;
    text-align: right;
    color: #fff;
    line-height: 20px;
    font-size: 16px;
}
.article_writer .writer_photo {
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 25px;
    margin-left: 10px;
    background-position: center;
    background-size: cover;
    vertical-align: top;
    position: relative;
    top: -15px;
}*/
.article_topic {
    height: 20px;
    padding: 10px;
    padding-right: 10px;
    background: #084a83;
    text-align: right;
    color: #fff;
    line-height: 20px;
    font-size: 16px;
    font-family: 'DroidSansArabic',Calibri,Arial!important;
}
.article_content {
    min-height: 400px;
    padding: 10px;
    outline: none;
    text-align: right;
    direction: rtl;
    color: #333;
    font-size: 18px;
    transition: 0.3s;
}

/* youtube */
.article_content iframe{
	display:block;
	width:100%;
	height:495px;
	margin:auto;
}
@media only screen and (max-width: 900px) and (min-width: 601px) {
	.article_content iframe{
		width:580px;
		height:327px;
	}
}
@media only screen and (max-width: 600px){
	.article_content iframe{
		width:100%;
		height:300px;
	}
}

/**/

.article_content img{
	max-width: 100%;
}