@charset "utf-8";
/* CSS Document */

/*------------------------------SideBars------------------------------*/
.MiddleWrapper {
	width:100%;
}

.LeftBar {
	z-index:11;
	position:fixed;
	background-color: rgba(255,255,255,1);
	height: 100%;
	width: 52.64%;
	left:-47.5%;
	animation-duration: 1s;
	animation-delay: 1s;
	transition-duration:0.15s;
	transition-timing-function: ease-in;
	animation-fill-mode: both;
	box-shadow: 0 0 1px rgba(0,0,0,0.1);
}

.LeftBar img {
	position: relative;
	top: 45%;
	transform: translateY(-50%);
	width:30%;
	float:right;
	animation-duration: 1.5s;
	animation-fill-mode: both;
}

.LeftBar--logofadeinleft {
	animation-name: LogoFadeInLeft;
}

.LeftBar.slideLeft {
	left:-2.5%;
}

.RightBar {
	z-index:11;
	position:fixed;
	background-color: rgba(255,255,255,1);
	height: 100%;
	width: 52.64%;
	right:-47.5%;
	animation-duration: 1s;
	animation-delay: 1s;
	transition-duration:0.15s;
	transition-timing-function: ease-in;
	animation-fill-mode: both;
	box-shadow: -0.1px 0 1px rgba(0,0,0,0.1);
}

.RightBar img {
	position: relative;
	top: 45%;
	transform: translateY(-50%);
	width:30%;
	float:left;
	animation-duration: 1.5s;
	animation-fill-mode: both;
}

.RightBar--logofadeinright {
	animation-name: LogoFadeInRight;
}

.RightBar.slideRight {
	right:-2.7%;
}

/* IPHONE PORTRAIT */
@media all and (max-width: 414px) {
		.LeftBar img {
			width:100%;
		}
		.RightBar img {
			width:100%;
		}
}