html, body {
	margin: 0;
	padding: 0;
	overflow: hidden;
}

h1, h2, p, a, span, label, input {
	font-family: 'Montserrat', helvetica, arial, sans-serif;
}

#preloader {
 	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ebebeb;
    z-index: 1000;
    display: none;
}
	
	.loaderContainer {
		margin: 20% auto;
		width: 740px;
		position: relative;
	}
	
		.loaderContainer .bubbleLoader {
			height: 100px;
			width: 100px;
			border-radius: 50%;
			background: #e50b6a;
			margin-left: -50px;
			position: absolute;
			left: 0;
			top: -115px;
		}
		
			.loaderContainer .bubbleLoader .pointer {
				width: 9px;
				height: 19px;
				background: url(../images/general/pointer.png) no-repeat;
				position: absolute;
				top: 99px;
				left: 46px;
			}
		
		.loaderContainer .pctLoad {
			padding: 35px 0 0;
			font-size: 1.7em;
			color: #fff;
			font-weight: bold;
			margin: 0 auto;
			display: block;
			text-align: center;
		}
	
		.loaderContainer .loader {
			width: 100%;
			height: 100px;
			background: url(../images/general/loadingBackground.jpg) no-repeat;
			margin-bottom: 25px;
		}
		
			.loaderContainer .loaderProgress {
				width: 50%;
				height: 100%;
				background: url(../images/general/loadingProgress.jpg) no-repeat;
			}
		
		.loaderContainer .instructions {
			width: 100%;
		}
			
			.loaderContainer .instructions .imageHolder {
				margin: 0 auto;
				width: 100%;
				height: 115px;
			}
			
				.loaderContainer .instructions .imageHolder img {
					display: block;
					margin: 0 auto;
					text-align: center;
				}
		
			.loaderContainer .instructions .instruction{
				width: 30%;
				height: 150px;
				border-right: 1px solid #e50b6a;
				float: left;
				color: #666;
				font-size: 0.8em;
				padding: 0 1.2%;
			}
			
			.loaderContainer .instructions div:last-child {
				border: 0;
			}

.ui-mobile .ui-page-active {
	/*overflow: hidden !important;*/
	position: relative;
}

#parallaxPage [data-url*=collegegreen],
#parallaxPage [data-url*=corridor]
{
	overflow: visible !important;
}

.header {
	z-index: 6;
}

.indexWrap {
	width: 100%;
	height: 100%;
	position: fixed;
	-webkit-transition: all 1s;
	-moz-transition: all 1s;
	-ms-transition: all 1s;
	-o-transition: all 1s;
	transition: all 1s;
	cursor: pointer;
}

.indexWrap:hover {
	-webkit-transform: scale(1.1, 1.1);
	-moz-transform: scale(1.1, 1.1);
	-o-transform: scale(1.1, 1.1);
	-ms-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
}

.indexWrap {
	background: url(../images/goldsmiths_ariel.jpg) no-repeat center center fixed; 
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	-ms-background-size: cover;
	background-size: cover;
	content: '';
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
}

.cloud1 {
	background: url(../images/cloud_2.png);
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	width: 663px;
	height: 460px;
	-webkit-animation: movecloudsLeft 30s linear infinite;
	-moz-animation: movecloudsLeft 30s linear infinite;
	-ms-animation: movecloudsLeft 30s linear infinite;
	-o-animation: movecloudsLeft 30s linear infinite;
	position: fixed;
	bottom: 0;
	z-index: 10;
}


.cloud2 {
	background: url(../images/cloud_4.png);
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	width: 551px;
	height: 352px;
	-webkit-animation: movecloudsLeft 44s linear infinite;
	-moz-animation: movecloudsLeft 44s linear infinite;
	-ms-animation: movecloudsLeft 44s linear infinite;
	-o-animation: movecloudsLeft 44s linear infinite;
	position: fixed;
	top: -3%;
	z-index: 10;
}

.welcome {
	border-radius: 50%;
	width: 300px;
	height: 300px;
	background: #EA107F;
	text-align: center;
	position: absolute;
	left: 14%;
	top: 17%;
	z-index: 10;
	text-transform: uppercase;
}

	.welcome h1 {
		padding: 30% 0 0;
		margin: 0;
		color: #fff;
		line-height: 1em;
		font-size: 2em;
	}
	
.target {
	border-radius: 50%;
	width: 50px;
	height: 50px;
	background: url(../images/crosshair.png) no-repeat 5px;
	-webkit-background-size: 80%;
	-moz-background-size: 80%;
	-o-background-size: 80%;
	-ms-background-size: 80%;
	background-size: 80%;
	border: 4px solid #fff;
	text-align: center;
	position: absolute;
	left: 50%;
	top: 52%;
	z-index: 10;
}

.welcomeBub_targetBub {
	z-index: 1;
}

@-webkit-keyframes movecloudsLeft {
	0% {margin-left: 100%;}
	100% {margin-left: -100%;}
}
@-moz-keyframes movecloudsLeft {
	0% {margin-left: 100%;}
	100% {margin-left: -100%;}
}
@-ms-keyframes movecloudsLeft {
	0% {margin-left: 100%;}
	100% {margin-left: -100%;}
}
@-o-keyframes movecloudsLeft {
	0% {margin-left: 100%;}
	100% {margin-left: -100%;}
}

@-webkit-keyframes movecloudsRight {
	0% {margin-left: -100%;}
	100% {margin-left: 100%;}
}
@-moz-keyframes movecloudsRight {
	0% {margin-left: 100%;}
	100% {margin-left: -100%;}
}
@-ms-keyframes movecloudsRight {
	0% {margin-left: 100%;}
	100% {margin-left: -100%;}
}
@-o-keyframes movecloudsRight {
	0% {margin-left: 100%;}
	100% {margin-left: -100%;}
}

.footer {
	background: rgba(0,0,0,0.85);
	background-attachment: scroll;
	width: 100%;
	height: 130px;
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 10;
	color: #fff;
	font-size: 0.8em;
	z-index: 10001;
}

.footer a {
	color: #fff;
	text-decoration: none;
}

.footer a.current {
	color: #e50b6a;
}

.footer a:hover {
	color: #e50b6a;
}

.footer .bullet {
	margin-left: 10px;
}

.footer .mainLinks {
	position: absolute;
	left: 20px;
	top: 20px;
	width:61%;
}

	.mainLinks .linkSet {
		float: left;
		margin-bottom: 5px;	
		clear: both;
	}
	
		.linkSet a {
			line-height: 160%;
		}

.footer .moreLinks {
	position: absolute;
	right: 20px;
	bottom: 35px;
}

.footer i {
	font-size: 1.3em;
	margin-left: 5px;
}

.footer ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

	.footer ul li {
		float: left;
		margin: 0 0 0 10px;
	}

.footer .logo {
	position: absolute;
	top: 17px;
	right: 20px;
}

.footer .enigmaLink {
	font-size: 0.8em;
	position: absolute;
	bottom: 10px;
	right: 20px;
}


@media only screen
and (min-width : 768px)
and (max-width : 1024px)
{
	
	.footer .mainLinks {
		position: absolute;
		left: 20px;
		top: 10px;
		width:70%;
		font-size: 0.9em;
	}
	
	.footer .mainLinks li {
		margin-top: 2px;
	}
	
	.footer .mainLinks .linkSet {
		margin: 0;
	}
	
	.footer .logo {
		top: 10px;
	}
	
	.footer .moreLinks {
		width: 180px;
		text-align: right;
		bottom: 30px;
	}
	
	.footer .moreLinks li {
		margin-top: 5px;
	}
	
	.footer .enigmaLink {
		bottom: 5px;
	}

}