body {
	margin: 0px;
	background-color: #ebebeb;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
}

.visible {
    visibility: visible;
    opacity: 1;
    -webkit-transition: opacity 0.3s ease-in;
    display: block;
}

.hidden {
    visibility: hidden;
    opacity: 0;
    -webkit-transition: visibility 0s 0.25s, opacity 0.4s ease-out;
    display: none;
}

#dynamicContent {
	height: 100%;	
}

#bannerCarousel {
	height: 100%;	
}

#bannerCarouselDots {
	height: 50px;
	width: 100%;
	z-index: 2001;
	margin-top: 8px;
	text-align: center;
}

#bannerCarouselDots div {
	display: inline-block;
	border-radius: 8px;
	width: 10px;
	height: 10px;
	background-color: #c7c7c7;
}

#bannerCarouselDots div.selected {
	background-color: #878787;
}

#bannerOverlay {
    height: 100%;
	background-size: 100% 100%;
}

#bannerSpinner {
	position: relative;
	height: 104px;
}

/**
 * Adds a delay to the display of the loading overlay.  We do this to prevent it appearing for a few microseconds
 * when there is little or no delay.
 */
.loadingOverlayBlocker {
	-webkit-transition-delay: 0.25s;
	z-index: 99999;
	display: block;
}

#loadingOverlay {
	z-index: 1000;
	position: absolute;
	top: 0px;
    width: 100%;
    height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
	-webkit-perspective: 1000;
}

#loading {
	width: 120px;
	height: 130px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -65px;
	margin-left: -60px;
}

/** iOS loading spinner */
#spinner{
	height: 100px;
}

#loading #text {
	color: white;
	text-align: center;
	font-size: 27px;
	font-family: Arial;
}

@media all and (device-width : 320px) {
	#loading {
	}

	#spinner{
		height: 60px;
	}

	#text {
		font-size: 15px;
	}

	#loading #text {
		position: relative;
		top: -20px;
	}
}
