@import url(http://fonts.googleapis.com/css?family=Electrolize);
html, body {
	margin: 0;
	padding: 0;
	height: 100%;
	font-family: arial;
	color: #ffffff;
	text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
	font-family: Electrolize;
}

a {
	text-decoration: none;
	color:rgb(255,255,255);
	transition-duration: 500ms;
	text-shadow: 0 1px 0 rgba(255,255,255,0.2);
}

img {
	height: auto;
    max-width: 100%;
}
.main {
	height: 100%;
    margin-left: 281px;
    position: relative;
    z-index: 2;
}

.wrapper {
	float: left;
	width: 100%;
}

.side div {
	border-bottom: 1px solid rgba(255,255,255,0.2);
}

.info_area {
    padding-top: 64px;
    z-index: 4;
    background: rgb(150,150,150);
	width: 280px;
	float: left;
	position: fixed;
	min-height: 100%;
	height: 100%;
}

.main-wrapp {
    position: absolute;
    min-height: 100%;
}

.logo {
	text-align: center;
}

.nav li:last-child {
	border-bottom: 1px solid rgba(0,0,0,0.1);
}

.nav a {
	border-top: 1px solid rgba(0,0,0,0.1);
}

.about, .recent{
	padding: 35px 42px 29px;
}

.nav li {
	position: relative;
}
.nav, .nav a {
    display: block;
    padding: 12px 0px;
    position: relative;
    text-align: center;
    z-index: 4;
}

.headline {
	font-size: 14px;
    font-weight: 900;
    padding-bottom: 7px;
}
.recent p:before {
	content:"\2192";
	margin-right: 5px;
}

.nav span {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	transform: scale(0,1);
	-webkit-transform: scale(0,1);
	opacity: 0;
	background:none repeat scroll 0 0 #FFFFFF;
	transition-duration: 150ms;
	z-index: 2;
}

.nav li {
	list-style: none;
	width: 100%;
	height: 40px;
}

.nav li:hover a {
	color: #969696;
}
.nav li:hover span{
    transform: scale(1,1);
    -webkit-transform: scale(1,1);
    opacity: 1;
}

.entry-image {
	/*background: #512323;*/
    color: #FFFFFF;
    float: left;
    position: relative;
    width: 25%;
}

.entry-image img {
	display: block;
}

article, aside, footer, header, hgroup, nav, section {
    display: block;
}

.image_info {
    background: rgba(81,35,35,0.95);
    box-shadow: 0 0 0 1px #512323 inset, 0 0 20px rgba(0, 0, 0, 0.6);
    height: 100%;
    left: 0;
    position: absolute;
    text-align: center;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.1);
    top: 0;
    transform: scale(0);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    width: 100%;
    z-index: 10;
}

.entry-image:hover .image_info {
	-moz-animation: 0.4s ease-in-out 0s normal none 1 bounce;
	-webkit-animation: 0.4s ease-in-out 0s normal none 1 bounce;
	animation: 0.4s ease-in-out 0s normal none 1 bounce;
	transform: scale(1);
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
}

.image_info .title {
    box-shadow: 0 -1px 0 rgba(255, 255, 255, 0.3) inset;
    padding: 45px 7px 8px;
}

.image_info .description {
    padding: 11px 40px;
}
.read_more {
	float: right;
}
@-moz-keyframes bounce{
	0% {
		opacity:0;
		-moz-transform: scale(1);
	}

	50% {
		opacity: 1;
		-moz-transform: scale(1.1);
	}

	100% {
		-moz-transform: scale(1);
	}
}

@-webkit-keyframes bounce{
	0% {
		opacity:0;
		-webkit-transform: scale(1);
	}

	50% {
		opacity: 1;
		-webkit-transform: scale(1.1);
	}

	100% {
		-webkit-transform: scale(1);
	}
}

@keyframes bounce{
	0% {
		opacity:0;
		transform: scale(1);
	}

	50% {
		opacity: 1;
		transform: scale(1.1);
	}

	100% {
		transform: scale(1);
	}
}
#mobile-nav {
    display: none;
    padding: 5px;
    text-align: center;
    background: white;
    color: grey;
}

@media screen and (max-width: 168px){
	.entry-image { width: 33.3%; }
}

@media screen and (max-width: 1157px) {
	.entry-image { width: 33.3%; }
	#side { display: none; }
	.info_area { position:static; height: 145px; min-height: 145px; float: none; width: 100%; border-right: none; -webkit-box-shadow: 0 4px 4px rgba(0,0,0,0.08); -moz-box-shadow: 0 4px 4px rgba(0,0,0,0.08); box-shadow: 0 4px 4px rgba(0,0,0,0.08); }
	.nav { display: none; }
	.main {
		width: 100%;
		height: auto;
		margin-left: 0;
	}
	.wrapper {
		float: none;
		width: 100%;
	}
	#mobile-nav { display: block; }
}