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

/*START - NewsHome*/
.newsArticleDivContainer{
height:140px;
position:relative;
overflow:hidden;
}

	.newsArticleDiv{
	position:absolute;
	}

		.newsArticle{
		width:455px;
		float:left;
		}
		
			.newsArticle span{
			margin:0 55px 0 55px;
			display:block;
			}
	
	.btnNewsDivPrev{
	position:absolute;
	z-index:1;
	left:15px;
	top:75px;
	cursor:pointer;
	}
	
	.btnNewsDivNext{
	position:absolute;
	z-index:1;
	right:15px;
	top:75px;
	cursor:pointer;
	}
/*END*/

/*START - NewsBrowse*/
.newsDiv{}

	.newsDivBrowser{
	background-color:#1064a4;
	margin:0 0 10px 0;
	}
	
	 	.newsDivBrowser a{
		font-size:12px;
		color:#ffffff;
		display:inline-block;
		margin:0;
		padding:5px;
		}
		
		.newsDivBrowser a:hover, .newsDivBrowser a#newsDivBrowserActive{
		background-color:#00bbe4;
		}

	.newsDivMainItems{
	border:1px solid #c5c5c5;
	background-color:#ececec;
	margin:10px;
	padding:5px;
	}
	
	.newsDivMainItems h4{
	height:30px;
	}
	
	.newsDivMainImage{
	height:100px;
	overflow:hidden;
	}
	
		.newsDivMainImage img{
		width:100%;
		}
	
	p.newsDivText{
	margin:5px 0 0 0;
	height:60px;
	}
	
	.newsDivDate{
	display:inline-block;
	width:50px;
	font-weight:bold;
	color:#00bbe4;
	}
	
	.newsDivTitle{
	display:inline-block;
	width:400px;
	}
/*END*/
		
/*START - DEVICE DEPENDANT CSS*/
@media (max-width: 767px) {
	/*CONTENT applying col-xs VIEWS*/
	.newsDiv{
	margin:20px 0 20px 0;
	}
	
	.newsArticleDivContainer{
	height:180px;
	}
	
	.newsDivMainItems{
	margin:0 0 5px 0;
	}
	
}
		
@media (min-width: 768px) and (max-width: 991px) {
	/*CONTENT applying col-sm VIEWS*/
	.newsDivMainItems{
	margin:0 0 5px 0;
	}
	
	.newsDivTitle{
	width:275px;
	}
}

@media (min-width: 992px) and (max-width: 1199px) {
	/*CONTENT applying col-md VIEWS*/
}

@media (min-width: 1200px) {
	/*CONTENT applying col-lg VIEWS*/	
}
/*END*/