.news-container {
	width: 100%;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
}

.news {
	position: relative;
	background-color: white;
	margin: 20px 10px 30px 10px;
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	-ms-flex-preferred-size: calc(50% - 20px);
	flex-basis: calc(50% - 20px);
	max-width: calc(50% - 20px);
}

.news-home {
	position: relative;
	margin: 20px 10px 30px 10px;
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	-ms-flex-preferred-size: calc(50% - 40px);
	flex-basis: calc(50% - 40px);
}

.home-news-link {
	color: inherit !important;
	text-decoration: none;
}

.news:hover a, .home-news-link:hover a {
	color: black;
	text-decoration: underline;
}

.news-header {
	width: calc(100% - 20px);
	background-color: #E6E6E6;
	padding: 10px;
	border-bottom: 1px solid rgba(0,0,0,0.15);
	display: inline-block;
	-webkit-transition: background-color 0.3s cubic-bezier(.25,.8,.25,1), color 0.3s cubic-bezier(.25,.8,.25,1);
	transition: background-color 0.3s cubic-bezier(.25,.8,.25,1), color 0.3s cubic-bezier(.25,.8,.25,1);
}

.news:hover .news-header, .news-home:hover .news-header {
	background-color: #363636;
	color: white;
}

.news-header div {
	line-height: 30px;
	text-align: left;
}

.news-title {
	width: 100%;
	float: left;
}

.news-date {
	background-color: #F39133;
	margin-left: 10px;
	padding: 0 10px;
	float: right;
	color: rgba(0,0,0,0.6);
	/*color: white;*/
	border: 1px solid rgba(0,0,0,0.2);
	border-radius: 2px;
	box-shadow: inset 0px 0px 10px 0px rgba(0,0,0,0.2);
}

.news-content-container {
	width: calc(100% - 20px);
	display: inline-block;
	padding: 10px;
	float: left;
}

.news-content {
	float: left;
	text-align: left;
	width: 100%;
}

.news-content strong {
	font-size: inherit !important;
	font-family: inherit;
	font-weight: bold;
}

.news-content p:first-of-type {
	margin-top: 0;
}

.news-picture {
	height: 110px;
	width: 110px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	background-image: url('/img/news/notfound.png');
	float: left;
	margin: 0 10px 10px 0;
}

.news-container h1 {
	width: 100%;
}

.news-home {
	margin: 0 0 30px 0;
	background-color: white;
}

.selected-news-title {
	width: calc(100% - 120px);
	float: left;
}

.selected-news-date {
	width: 80px;
	float: right;
	margin-right: 40px;
	color: #F39133;
	font-weight: bold;
	text-align: right;
}

.selected-news-content {
	float: left;
	width: 100%;
}

.selected-news-container {
	width: 100%;
}

@media (max-width: 699px) {
	.news {
		-ms-flex-preferred-size: 100%;
		flex-basis: 100%;
		max-width: 100%;
	}
}
