html, body, .perspective {
	width: 100%;
	height: 100%;
}
.perspective {
	background: #aaa;
	position: relative;
}
.site-container {
	background: #f2f2f2;
	min-height: 100%;
	position: relative;
	outline: 1px solid rgba(0,0,0,0);
	z-index: 5;
	-webkit-transform: translateZ(0) translateX(0) rotateY(0deg); /* reset transforms (Chrome bug) */
	transform: translateZ(0) translateX(0) rotateY(0deg);
}
.site-container::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 0px;
	opacity: 0;
	background: rgba(0,0,0,0.2);
	/* the transition delay of the height needs to be synced with the container transition time */
	-webkit-transition: opacity 0.4s, height 0s 0.4s;
	transition: opacity 0.4s, height 0s 0.4s;
}
.wrapper {
	position: relative;
}
.component {
	margin: 0 auto;
	width: 60%;
	text-align: justify;
	font-size: 1.5em;
}
/* Modal view */
.perspective.modalview {
	position: fixed;
	-webkit-perspective: 1500px;
	perspective: 1500px;
}
.modalview .site-container {
	position: absolute;
	overflow: hidden;
	width: 100%;
	height: 100%;
	cursor: pointer;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
.modalview .wrapper {
	-webkit-transform: translateZ(-1px); /* solves a rendering bug in Chrome on Windows */
}
.animate .site-container::after {
	opacity: 1;
	height: 101%;
	-webkit-transition: opacity 0.3s;
	transition: opacity 0.3s;
}
/* Outer Nav */
.outer-nav {
	position: absolute;
	height: auto;
	font-size: 1em;
}
.outer-nav.vertical {
	top: 0;
	-webkit-transform-style: preserve-3d;
}
.outer-nav.horizontal {
	left: 50%;
	width: 75%;
	max-width: 1000px;
	text-align: center;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}
.outer-nav.left {
	left: 25%;
}
.outer-nav.right {
	right: 10px;
	width: 60%;
	height: 100%;
	display: none;
}
.outer-nav.top {
	top: 25%;
}
.outer-nav.bottom {
	bottom: 25%;
}
.icon-news::before {
	content: "\e600"
}
.icon-home::before {
	content: "\e601"
}
.icon-image::before {
	content: "\e602"
}
.icon-upload::before {
	content: "\e603"
}
.icon-star::before {
	content: "\e604"
}
.icon-mail::before {
	content: "\e605"
}
.icon-lock::before {
	content: "\e606"
}
.icon-chart-pie::before {
	content: "\e607"
}
/* Effect Move Left */
.effect-moveleft {
	background: #e5e2e2; /* Old browsers */
	/* IE9 SVG, needs conditional override of 'filter' to 'none' */
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSI1MCUiIHN0b3AtY29sb3I9IiNlNWUyZTIiIHN0b3Atb3BhY2l0eT0iMSIvPgogICAgPHN0b3Agb2Zmc2V0PSI1MCUiIHN0b3AtY29sb3I9IiNlNWUyZTIiIHN0b3Atb3BhY2l0eT0iMSIvPgogICAgPHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjYjZjNGQ2IiBzdG9wLW9wYWNpdHk9IjEiLz4KICA8L2xpbmVhckdyYWRpZW50PgogIDxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxIiBoZWlnaHQ9IjEiIGZpbGw9InVybCgjZ3JhZC11Y2dnLWdlbmVyYXRlZCkiIC8+Cjwvc3ZnPg==);
	background: -moz-linear-gradient(top, #e5e2e2 50%, #e5e2e2 50%, #b6c4d6 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #e5e2e2), color-stop(50%, #e5e2e2), color-stop(100%, #b6c4d6)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #e5e2e2 50%, #e5e2e2 50%, #b6c4d6 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #e5e2e2 50%, #e5e2e2 50%, #b6c4d6 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #e5e2e2 50%, #e5e2e2 50%, #b6c4d6 100%); /* IE10+ */
	background: linear-gradient(to bottom, #e5e2e2 50%, #e5e2e2 50%, #b6c4d6 100%); /* W3C */
 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e5e2e2', endColorstr='#b6c4d6', GradientType=0 ); /* IE6-8 */
}
.effect-moveleft .site-container {
	-webkit-transition: -webkit-transform 0.4s;
	transition: transform 0.4s;
	-webkit-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
}
.effect-moveleft .site-container::after {
	background: rgba(255,255,255,0.6);
}
.effect-moveleft.animate .site-container {
	-webkit-transform: translateX(-50%) rotateY(45deg) translateZ(-50px);
	transform: translateX(-50%) rotateY(45deg) translateZ(-50px);
}
.no-csstransforms3d .effect-moveleft.animate .site-container {
	left: -75%;
}
