.blogentry {
	width: 100%;
	height: 300px;
	margin: 0;
	padding: 0;
	position: relative;
}

.loadingentry {
	width: 100%;
	height: 150px;
	margin: 0;
	padding: 0;
	background: #424242;
	position: relative;
}

.loadingentry h2 {
	font-family: "SourceSansPro";
	font-size: 28px;
	color: #fff;
	font-weight: 100;
	text-transform: uppercase;
	text-align: center;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 20px;
	left: 5px;
	right: 5px;
}

.loadingentry i {
	color: #fff;
	text-align: center;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 70px;
	left: calc(50% - 30px);
}

.blogentryimage1 {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 400px;
	background: rgba(0, 0, 0, 0.15);
}

.blogentryimage2 {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 400px;
	background: rgba(0, 0, 0, 0.15);
}

.blogentry img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	max-width: 400px;
	max-height: 300px;
}

.blogentrycontent1 {
	position: absolute;
	top: 0;
	left: 400px;
	right: 0;
	bottom: 0;
}

.blogentrycontent2 {
	position: absolute;
	top: 0;
	left: 0;
	right: 400px;
	bottom: 0;
}

.blogentrydescription {
	position: absolute;
	top: 10px;
	left: 10px;
	right: 10px;
	bottom: 40px;
}

.blogentrydescription h2 p {
	display: inline-block;
	margin-left: 10px;
	font-size: 14px;
}

.blogentryreadmore {
	position: absolute;
	bottom: 10px;
	left: 10px;
	right: 10px;
	height: 20px;
}

.blogentryreadmore p {
	margin: 0;
	padding: 0;
	font-family: "SourceSansPro";
	font-size: 18px;
	color: #cccccc;
	cursor: pointer;
}

.blogentry h2 {
	padding: 0;
	margin: 0;
	font-family: "SourceSansPro";
	font-weight: 100;
	font-size: 28px;
	color: #FFF;
	text-transform: uppercase;
}

.blogentrydescription p {
	margin: 0;
	margin-top: 5px;
	padding: 0;
	font-family: "SourceSansPro";
	font-size: 18px;
	color: #FFF;
}

#maintextblog {
	background: #3b526a;
	position: absolute;
	top: 120px;
	left: 100%;
	width: calc(100% - 20px);
	bottom: 0;
	overflow-x: auto;
	padding: 10px;
	margin: 0;
	font-family: "SourceSansPro";
	font-size: 18px;
	color: #FFF;
}

#maintextblog a {
  text-decoration: none;
  color: #bbbbbb;
}

#maintextblog h1 {
	padding: 0;
	margin: 0;
	font-family: "SourceSansPro";
	font-size: 36px;
	color: #FFF;
	text-transform: uppercase;
}

#maintextblog p {
	margin: 0;
	margin-top: 5px;
	padding: 0;
	font-family: "SourceSansPro";
	font-size: 18px;
	color: #FFF;
	text-align: left !important;
	line-height: 1.2 !important;
}

.articleblogin {
	animation-name: blogin;
	animation-duration: 2s;
	animation-fill-mode: forwards;
}

.articleblogout {
	animation-name: blogout;
	animation-duration: 2s;
	animation-fill-mode: forwards;
}

@keyframes blogin {
	from {
		left: 100%;
	}
	to {
		left: 0;
	}
}

@keyframes blogout {
	from {
		left: 0;
	}
	to {
		left: 100%;
	}
}
