/******************************************************************************************/
/*****************	DEFAULT CSS FOR SCREENS GREATER THAN 720 PX 	***********************/
/******************************************************************************************/
body{
	background-color: #f3f3f3; /* #eeeeee; */
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 120%;
	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: 90%;
 	max-width: 1300px;
 	min-width: 691px;  /* (768)*.90 = 691 */
 	
 	/* SET MAIN LAYER AND CONTENTS TO SCALE ON WINDOW RESIZE... */
 	height: 0;
 	
 	/* NEED PADDING-TOP FOR PERCENTAGE HEIGHTS TO WORK...? INCLUDING PERCENTAGES FOR FONTS...? */
 	padding-top: 50%; 
 	
 	top: 4%;
 	
 	/* left: 5%; */
 	/* right: 5%; */
 	margin-left: 5%;
	margin-right: 5%;
	/* margin-left: auto; */
	/* margin-right: auto; */
}
/*
#navigationBlock{
	position: absolute;
	width: 40%;
	height: 10%;
	left: 30%;
	top: 0%;
	padding-top: 0%;
	background-color: inherit;
}
*/
#navigationBlock{
	position: absolute;
	width: 70%;
	height: 10%;
	left: 15%;
	top: 0%;
	padding-top: 0%;
	background-color: inherit;
}
#navigationTable{
	width: 100%;
	height: 100%;
}
#titlesContainer{
	position: absolute;
	text-align: center;
	width: 25%;
	height: 16%;
	min-height: 60px;
	top: 14%;
	left: 0%;
	padding-top: 0%;
	padding-bottom: 1%;
}
#titles{
	/* position: relative; */
	/* text-align: center; */
	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: 60%;
	margin-bottom: 10px;
	/* margin-left: auto; */
	/* margin-right: auto; */
}
.materials{
	font-size: 68%;
	color: #999999;
}
#linksBlock{
	visibility: hidden;
	position: absolute;
	width: 25%;
	height: 30%;
	min-height: 120px;
	top: 38%;
	padding-top: 2%;
	left: 0%;
	background-color: inherit;
	text-align: center;
}
/* .dot class for status indication */
.dot-available {
  height: 20px;
  width: 20px;
  background-color: #19e019;
  border-radius: 50%;
  display: inline-block;
}
.dot-unavailable {
  height: 20px;
  width: 20px;
  background-color: red;
  border-radius: 50%;
  display: inline-block;
}
.dot-disassembled {
  height: 20px;
  width: 20px;
  background-color: orange;
  border-radius: 50%;
  display: inline-block;
}

#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: 25%;
	height: 75px;
	left: 0%;
	bottom: .3%;
}
#thumbnailScroller div.scrollableArea * {
	position: relative;
	float: left;
	margin: 0;
	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: 75px;
	opacity: 1;
	filter: alpha(opacity = 100);
}

#leftSpacerBlock{
	position: absolute;
	background-color: inherit;
	width: 2%;
	height: 100%;
	min-height: 350px;
	top: 0px;
	left: 25%;
	z-index: 10;
}
#imageBlock{
	position: absolute;	
 	width: 73%;
 	max-width: 73%;
  	max-height: 90%;
  	height: 90%;
	left: 27%;
	top: 10%;
	background-color: inherit;
	text-align: center;
}
#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; 
}

/*********************************************************/
/* 	scroller styles			*/		
/*********************************************************/
#scroller{	
	position: absolute;
	visibility: hidden;
	width:70%;
	height: 150px;
	left: 15%;
	top: 33%;
}
#scroller div.scrollableArea *{
	position: relative;
	float: left;
	margin: 0;
	padding-right: 1px;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	user-select: none;
}
#scroller div.scrollableArea img {
	height: 150px;
	opacity: 1;
	filter: alpha(opacity = 80);
}



