/******************************************************************************************/
/*****************			iPhone CSS						***********************/
/******************************************************************************************/
html, body{
	background-color: #eeeeee;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 150%;
	margin:0;
	padding:0;
}

/* DEFAULT LINK HANDLING */
a img{
	border: none;
}
a:link {
	color: #BE1014;
	text-decoration: none;
}
a:visited {
	color: #BE1014;
	text-decoration: none;
}
a:hover {
	color: #FF6666;
}
a:active, a:focus {
	text-decoration: none;
	outline: none;
}

#mainLayer{
	position: absolute;
	background-color: inherit;
	width: 100%;
 	/* ANOTHER WAY TO SET MAIN LAYER AND CONTENTS TO SCALE... */
 	height: 160%;
 	padding-top: 0%; 
 	top: 0%;
 	/* NEED THESE TO CENTER MAIN LAYER....DEFAULT LEFT MARGIN OF 5%... */
 	margin-left: auto;
	margin-right: auto;
}
#navigationBlock{
	position: absolute;
	width: 80%;
	height: 10%;
	left: 10%;
	top: 0%;
	padding-top: 0%;
	background-color: inherit;
}
#navigationTable{
	width: 100%;
	height: 100%;
}
#titlesContainer{
	position: absolute;
	width: 50%;
	height: auto;
	top: 50%;
	left: 0%;
	padding-left: 2%;
}
#titles{
	position: relative;
	text-align: center;
	word-wrap: break-word;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	font-size: 75%;
	font-style: italic;
	color: #333333;
}
#materials{
	position: relative;
	text-align: center;
	width: 100%;
	height: 100%;
	margin-left: auto;
	margin-right: auto;
	font-size: 55%;
}
.materials{
	font-size: 68%;
	color: #999999;
}
#linksBlock{
	visibility: hidden;
	position: absolute;
	width: 50%;
	height: auto;
	top: 50%;
	padding-top: 0%;
	left: 50%;
	background-color: inherit;
	text-align: center;
}
#audioContainer{
	position: relative;
	display: none;
	z-index: 20;
	width: 100%;
	top: 8%;
}
#audio{
	position: absolute;
	width: 100%;
	left: 0% !important;
	outline: 0;	
}
#thumbnailScroller{
	/* visibility: hidden; */ /* 'display: none' and trying to fadeIn() caused unexpected, broken behavior */
	position: absolute;
	width: 74%;
	height: 200px;
	left: 13%;	
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	user-select: none;
}
#thumbnailScroller div.scrollableArea * {
	position: relative;
	display: block;
	float: left;
	margin: 0;
	padding-top: 0%;
	padding-left: 0px;
	padding-right: 1px;
	/* If you don't want the images in the scroller to be selectable, try the following
		block of code. It's just a nice feature that prevent the images from
		accidentally becoming selected/inverted when the user interacts with the scroller. */
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	user-select: none;
}
#thumbnailScroller div.scrollableArea img {
	height: 200px;
}

#leftSpacerBlock{
	position: relative;
	background-color: inherit;
	width: 0%;
}
#imageBlock{
	position: absolute;	
 	width: 95%;
 	max-width: 95%;
  	max-height: 35%;
  	height: 35%;
	left: 2.5%;
	top: 10%;
	background-color: inherit;
	margin-left: auto;
	margin-right: auto;
}
#image{
	display: block;
	position: absolute;
	left: 0%; /* so IE will not interpret as 'auto' */
}
#imageDetail{
	display: none;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0% !important;
	left: 0% !important;
	text-align: left !important;
}
#video1Container{
	position: absolute;
	display: none;
	width: 100%;
	height: 100%;
	top: 0% !important;
	left: 0% !important;
	text-align: left !important;
}
#video1{	
	width: 100%;
	outline: 0;
}
#video2Container{
	position: absolute;
	display: none;
	width: 100%;
	height: 100%;
	top: 0% !important;
	left: 0% !important;
	text-align: left !important;
}
#video2{
	width: 100%;
	outline: 0;
}

#preload_image_container{
	display: none; 
	width:0%;
}

