@charset "UTF-8";


/* Animation Container */
#animationContainer {
	overflow: hidden;
	position: absolute; z-index: 1000;
	width: 100%; height: 100%;
	background-color: #C9151E;

	visibility: visible; opacity: 1;
	-webkit-transition: all 1s ease 0s;
	-moz-transition: all 1s ease 0s;
	-ms-transition: all 1s ease 0s;
	-o-transition: all 1s ease 0s;
	transition: all 1s ease 0s;
}
#animationContainer.fade { visibility: hidden; opacity: 0; }

.lineWrapper {
	display: none;
	position: absolute;
	top: 0; height: 100%; width: 35%;
}
.lineWrapper.right { right: -2.5%; }
.lineWrapper.middle { right: 32.5%; }
.lineWrapper.left { right: 67.5%; }
.lineWrapper.show { display: block; }

.lineWrapper>.line {
	-webkit-transition: height .4s ease 0s;
	-moz-transition: height .4s ease 0s;
	-ms-transition: height .4s ease 0s;
	-o-transition: height .4s ease 0s;
	transition: height .4s ease 0s;
}
.lineWrapper>.line.diagonal {
	position: absolute;
	left: 0; bottom: 0; height: 0; width: 0;
	border-left: 1px solid #CCCCCC;
	-webkit-transform-origin: left bottom;
	-moz-transform-origin: left bottom;
	-ms-transform-origin: left bottom;
	-o-transform-origin: left bottom;
	transform-origin: left bottom;
}
.lineWrapper>.line.vertical {
	position: absolute;
	right: 0; top: 0;
	height: 0; width: 0;
	border-right: 1px solid #CCCCCC;
}


#loading {
	position: absolute;
	left: 50%; top: 50%;
	width: 300px; height: 100px; line-height: 100px;
	margin: -100px 0 0 -150px;
	color: white; text-align: center; font-size: 20px;
	font-family: 'Myriad Pro', Helvetica, Arial, sans-serif;
	font-weight: bold; letter-spacing: 3px;
	cursor: default;
}


#animationContainer .text {
	position: absolute;
	left: 50%; top: 50%;
	width: 300px; height: 100px; line-height: 100px;
	margin: -50px 0 0 -150px;
	color: white; text-align: center; font-size: 20px;
	font-family: 'Myriad Pro', Helvetica, Arial, sans-serif;
	font-weight: bold; letter-spacing: 5px;
	cursor: default;
	visibility: hidden; opacity: 0;
	-webkit-transition: all 2s ease 0s;
	-moz-transition: all 2s ease 0s;
	-ms-transition: all 2s ease 0s;
	-o-transition: all 2s ease 0s;
	transition: all 2s ease 0s;
}
#animationContainer .text.show { visibility: visible; opacity: 1; }


/* Imgs */
.img1 {
	background-image: url(/img/index/1.jpg);
	filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='img/index/1.jpg', sizingMethod='scale');
	-ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='img/index/1.jpg', sizingMethod='scale')";
}
.img2 {
	background-image: url(/img/index/2.jpg);
	filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='img/index/2.jpg', sizingMethod='scale');
	-ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='img/index/2.jpg', sizingMethod='scale')";
}
.img3 {
	background-image: url(/img/index/3.jpg);
	filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='img/index/3.jpg', sizingMethod='scale');
	-ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='img/index/3.jpg', sizingMethod='scale')";
}
.img4 {
	background-image: url(/img/index/4.jpg);
	filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='img/index/4.jpg', sizingMethod='scale');
	-ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='img/index/4.jpg', sizingMethod='scale')";
}


/* Section Specific */
.section { top: 13%; height: 70%; width: 20%; }


/* Lined Sections */
.section.lined { border-left: 1px solid #CCCCCC; }
.section.lined.middle { left: 2px; }
.section.lined.last { border-right: 1px solid #CCCCCC; }

.section .diagonal {
	position: absolute;
	left: 0; bottom: 0; height: 0; width: 0;
	border-left: 1px solid #CCCCCC;
	-webkit-transform-origin: left bottom;
	-moz-transform-origin: left bottom;
	-ms-transform-origin: left bottom;
	-o-transform-origin: left bottom;
	transform-origin: left bottom;
}

.imageWrapper {
	position: absolute;
	visibility: hidden; opacity: 0;
	left: 0; right: 0; top: 0; bottom: 0;
	-webkit-transition: all .5s ease 0s;
	-moz-transition: all .5s ease 0s;
	-ms-transition: all .5s ease 0s;
	-o-transition: all .5s ease 0s;
	transition: all .5s ease 0s;
}
.imageWrapper.show { visibility: visible; opacity: 1; }
.section.middle>.imageWrapper { right: 1px; }

/* Links */
.linkWrapper {
	position: absolute; z-index: 2;
	height: 40px;
	text-align: left; white-space: nowrap;
	cursor: pointer;
}
.linkWrapper.upper { left: 20px; top: 20px; }
.linkWrapper.lower { right: 20px; bottom: 20px; }
.linkWrapper.white { color: white; }
.linkWrapper.hide { display: none; }

.linkNum {
	position: relative;
	display: inline-block; vertical-align: bottom;
	height: 40px; line-height: 54px;
	margin-right: 5px;
	font-size: 36px; font-weight: bold; text-align: right;
	cursor: pointer;
}
.linkNum.white { color: white; }

.linkText {
	position: relative;
	display: inline-block; vertical-align: bottom;
	bottom: 0;
	font-size: 12px; text-align: left;
	cursor: pointer;
}
.linkText.white { color: white; }
.linkText>span {
	padding-left: 2px;
	font-size: 8px; letter-spacing: 2px;
	cursor: pointer;
}
