

/*********************************************************** small screen */
	#MainContent {
		width: 100%;
		padding: 50px 0px;
	}

	.NewsBox {
		width: calc((100% / 1) - 100px);
		margin: 0px auto 30px auto;
	}

	.NewsBoxImage {
		height: calc(100vw * 350 / 600);
	}

	.NewsBoxImageFrontMobile {
		display: block;
	}

/*********************************************************** medium screen */
@media screen and (min-width: 800px) {
	#MainContent {
		width: calc(100% - 100px - 20px);
		padding: 30px 10px 30px 10px;
	}

	.NewsBox {
		width: calc((100% / 2) - 20px);
		margin: 0px 10px 30px 10px;
	}

	.NewsBoxImage {
		height: calc((100vw - 100px - 50px - 30px - 30px) / 2 * 400 / 600);
	}

	.NewsBoxImageFrontMobile {
		display: none;
	}
}

/*********************************************************** large screen */
@media screen and (min-width: 1120px) {
	#MainContent {
		width: calc(100% - 100px - 20px);
		padding: 30px 10px 30px 10px;
	}

	.NewsBox {
		width: calc((100% / 3) - 20px);
		margin: 0px 10px 30px 10px;
	}

	.NewsBoxImage {
		height: calc(300px * 490 / 600);
	}

	.NewsBoxImageFrontMobile {
		display: none;
	}
}


/*********************************************************** Main Content */
#BottomBackground {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background: rgb(26, 25, 23);
}

#MainContent {
	position: relative;
	top: 0px;
	left: 0px;
	background: rgb(17, 16, 15);
	margin: auto;

	display: flex;
	flex-wrap: wrap;
}

.NewsBox {
	position: relative;
	top: 0px;
	left: 0px;
	display: inline-block;
	cursor: pointer;
}

.NewsBoxImage {
	position: relative;
	top: 0px;
	left: 0px;
	width: 100%;
	/*background: rgb(50, 50, 50);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;*/

	overflow: hidden;
}

.NewsBoxImageInner {
	position: absolute;
	top: 0%;
	left: 0%;
	width: 100%;
	height: 100%;
	background: rgb(50, 50, 50);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;

	transform: scale(1.01);
	
	-webkit-transition: transform 0.8s;
	transition: transform 0.8s;
}

.NewsBoxImageFront {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	/*background: rgb(193, 176, 137);*/

	box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    /*border: 5px solid rgb(193, 176, 137);*/
	border-width: 5px;
	border-style: solid;
	border-color: transparent;

	pointer-events: none;

	-webkit-transition: border-color 0.8s;
}
.NewsBox:hover > .NewsBoxImage > .NewsBoxImageFront {
	border-color: rgb(193, 176, 137);
}
.NewsBox:hover > .NewsBoxImage > .NewsBoxImageInner {
	transform: scale(1.05);
}
.NewsBox:hover > .NewsBoxInfo > .NewsBoxBottom > .NewsBoxReadMore {
	text-decoration: underline;
}

.NewsBoxImageFrontMobile {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	/*background: rgb(193, 176, 137);*/

	box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    /*border: 5px solid rgb(193, 176, 137);*/
	border-width: 5px;
	border-style: solid;
	border-color: rgb(193, 176, 137);

	pointer-events: none;
}

.NewsBoxInfo {
	position: relative;
	top: 0px;
	left: 0px;
	width: 100%;
	margin: auto;
}

.NewsBoxText {
	position: relative;
	top: 0px;
	left: 0px;
	width: 100%;
	font-size: 13.5px;
	line-height: 15px;
	text-align: left;
}

.NewsBoxLine {
	position: relative;
	top: 0px;
	left: 0px;
	width: 100%;
	Height: 1px;
	Background: rgb(101, 87, 75);
}

.NewsBoxBottom {
	position: relative;
	top: 0px;
	left: 0px;
	width: 100%;

	display: flex;
	flex-wrap: wrap;
}

.NewsBoxReadMore {
	position: relative;
	top: 0px;
	left: 0px;
	width: 50%;
	font-size: 15px;
	line-height: 15px;
	text-decoration: none;
	text-align: left;

	display: inline-block;

	-webkit-transition: text-decoration 0.1s;
	transition: text-decoration 0.1s;
}

.NewsBoxDate {
	position: relative;
	top: 0px;
	right: 0px;
	width: 50%;
	font-size: 15px;
	line-height: 15px;
	text-decoration: none;
	text-align: right;

	display: inline-block;
}

.NewsPageNav {
	position: relative;
	top: 0px;
	left: 0px;
	width: calc(100% - 100px);
	margin: auto;
	
	font-size: 18px;
	text-align: center;
	line-height: 30px;

	display: block;
	background: rgb(17, 16, 15);
	padding: 0px 0px 30px 0px;
}
.NewsPageNav a {
	background-color: transparent;
	text-decoration: none;
}
.NewsPageNav a:hover {
	background-color: rgba(193, 176, 137, 0.2);
	text-decoration: none;
}

.NewsPageNavButton {
	background-color: transparent;
	font-size: 18px;
	text-align: center;
	line-height: 30px;

	padding: 0px 10px;
	display: inline-block;
}

.NewsPageNavButtonOn {
	background-color: transparent;
	font-size: 18px;
	text-align: center;
	line-height: 30px;

	padding: 0px 10px;
	display: inline-block;

	border-style: solid;
	border-width: 0px 0px 1px 0px;
	border-color: rgb(193, 176, 137);
}