/***************************** PROGRESS BAR STYLES ****************************/
#loading {
	position: absolute;
	top: 50%;
	left: 50%;
	-ms-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

#loading p {
	text-align: center;
	margin: 0;
	z-index: 4;
	position: relative;
	width: 150px;
	height: 24px;
}

.timer {
	position: absolute;
	width: 240px;
	height: 240px;
	left: -45px;
	top: -108px;
	box-shadow: 0px 0px 30px rgba(255, 255, 255, 0.9), inset 0px 0px 15px black;
	border-radius: 120px;
	background-image: url("../img/loading.png");
}

.timer #innerGlow {
	position: absolute;
	box-shadow: 0px 0px 15px black, inset 0px 0px 30px rgba(255, 255, 255, 0.9);
	border-radius: 120px;
	width: 190px;
	height: 190px;
	top: 25px;
	left: 25px;
}

.timer > #slice {
	position: absolute;
	width: 240px;
	height: 240px;
	clip: rect(0px, 120px, 240px, 0px);
}

.timer > #slice.lt50 {
	clip: rect(auto, auto, auto, auto);
}

.timer > #slice > .pie {
	position: absolute;
	clip: rect(0px, 240px, 240px, 120px);
	box-shadow: inset 0px 0px 30px rgba(255, 255, 255, 0.9);
	border-radius: 120px;
	width: 190px;
	height: 190px;
	border: 25px solid black;
	background-color: black;
	background-clip: padding-box;
}

.timer > #slice > .pie.fill {
	-ms-transform: rotate(180deg) !important;
	-webkit-transform: rotate(180deg) !important;
	transform: rotate(180deg) !important;
}

/******************************** TITLE STYLES ********************************/
#frame[rel='title'] h1 {
	margin: 0;
	font-size: 100px;
	font-weight: 700;
	margin-bottom: 20px;
}

#frame[rel='title'] h1 span {
	font-size: 85px;
	font-weight: 400;
}

#frame[rel='title'] .back, #frame[rel='title'] .next {
	display: none;
}

#frame[rel='title'] #content {
	width: 960px;
	text-align: center;
	height: auto;
	top: 50%;
	margin-top: -191px;
}