@charset "utf-8";
/* CSS Document */
	#NewsForm{
		width: 100%;
		padding: 10px;
		overflow: hidden;
	}
	#NewsForm ul{
		padding: 0.5%;
		margin: 0px;
		list-style: none;
	}
	#NewsForm ul li{
		width: 33%;
		padding: 10px;
		display: inline-block;
		cursor: pointer;		
		
	}
	.NewsItem{
		
		border: 3px double rgba(255,156,202,1.00);
		overflow: hidden;
		box-shadow: border;
	}
	.NewsImg {
		padding: 5px;
		width: 100%;
		height: 100%;
		overflow: hidden;		
	}
	.NewsImg img{
		width: 100%;
		height: 100%;
		transition: all .5s;
	}
	.NewsImg:hover img{
		opacity: 0.4;
		transform: scale(1.2);
	}
	.NewsTitle{
		width: 100%;
		height: 35px;
		line-height: 35px;
		background: rgba(0,0,0,0.63);
		position: absolute;
		margin-top: -35px;
		overflow: hidden;
		color: #FFF;
		font-size: 14px;
		padding-left: 10px;
	}
	.More{
		width: 100%;
		height: 100%;
		position: absolute;
		z-index: 1000;
		opacity: 0;
		transition: all .5s;
		color: #FFF;
		background: rgba(0,0,0,0.3);
		font-size: 20px;
		font-weight: bold;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.More:hover{
		opacity: 1;
	}
	.More:hover +.NewsImg img{
		opacity: 0.4;
		transform: scale(1.2);
	}
	#Pager{
		width: 100%;
		height: 120px;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	@media only screen and (max-width: 992px)	{
		#NewsForm ul li{
			width: 49.5%;
			padding: 10px;
			display: inline-block;
			cursor: pointer;		

		}
	}
	@media only screen and (max-width: 560px)	{
		#NewsForm ul li{
			width: 99%;
			padding: 10px;
			display: inline-block;
			cursor: pointer;		

		}
	}
