
/* component wrapper for everything, needs to be 100% in size so everything resizes inside of it */
#componentWrapper{
	position:absolute;
	left:0px;
	top:0px;
	width:100%;
	height:100%;
	overflow:hidden;
	
	/* hide component on beginning until slides initialize */
	opacity: 0; 
	filter: alpha(opacity=0); 
	-ms-filter: "alpha(opacity=0)"; 
	-khtml-opacity: 0; 
	-moz-opacity: 0; 
}

/* holder for all slides, the same size as slides themselves, size and position of this is manipulated in jquery */
#componentWrapper .componentPlaylist{
	position:absolute;
	/*background:green;*/
}

/* holder for each slide, makes border on slide, 20px bigger in width/height than scaler. */
#componentWrapper .slide{
	position:absolute;
	width:500px;
	height:333px;
	/*overflow:hidden;*/
	background:#fff;
	
	moz-box-shadow: 2px 2px 5px #222;
	-webkit-box-shadow: 2px 2px 5px #222;
	box-shadow: 2px 2px 5px #222;
	-ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#000000')";
	filter: progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#000000');
	
	/*display:none;*/
}

/* scaler holds slide content */
#componentWrapper .scaler{
	position:absolute;
	top:0px;
	left:0px;
	width:500px;
	height:333px;
	/*overflow:hidden;*/
}

/* image in slide */
#componentWrapper .stack_img{
	position:absolute;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
	display:block;
}



/* controls */
#componentWrapper .componentControls{
	position:absolute;
	width:30px;
	height:110px;
	top:50%;
	margin-top:-55px;
	/* horizontally also aligned in jquery */
	display:none;
	/*background:red;*/
}

#componentWrapper .componentControls .controls_next{
	position:absolute;
	top:0px;
	left:0px;
	width:30px;
	height:30px;
}

#componentWrapper .componentControls .controls_toggle{
	position:absolute;
	top:40px;
	left:0px;
	width:30px;
	height:30px;
}

#componentWrapper .componentControls .controls_previous{
	position:absolute;
	top:80px;
	left:0px;
	width:30px;
	height:30px;
}




/* holder for all captions, important thing is that captions are relatively alligned */
#componentWrapper .caption_list {
	position: absolute;
	bottom:5px;
	left:20px;
	display:none;
}

/*******************************
CAPTIONS COMPONENT WIDTH <=959px  
*******************************/

/* first caption */
#componentWrapper .caption_one {
	position: absolute;
	left: 0px;
	bottom: -50px; 
	color: #fff;
	text-align:center;
	font-size: 12px;
	font-weight:bold;
	width: 500px;
	height: 22px;
	line-height: 16px;
	font-family: Arial, Helvetica, sans-serif;

}

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

#componentWrapper .caption_one a:hover, a:active{
	text-decoration: none;
}





/* caption font sizes for different component sizes */
#componentWrapper .caption_font_large {

}

#componentWrapper .caption_font_medium {

}

#componentWrapper .caption_font_small {

	white-space: normal;   
}




/* detail holder */
#componentWrapper .slide_detail{
	position:absolute; 
	width:30px;
	height:80px;
	left:20px;
	top:20px;
	/*background:red;*/
}

/* image details for lightbox */
#componentWrapper .pp_content{
	position:relative; 
	display:block;
	width:30px;
	height:30px;
	left:0px;
	top:0px;
	margin-bottom:10px;
}

/* image link */
#componentWrapper .pp_link{
	position:relative; 
	display:block;
	width:30px;
	height:30px;
	left:0px;
	top:0px;
}





/* google map example */
#componentWrapper #gmap_canvas{
	position:absolute; 
	top:0px;
	left:0px;
	width:100%;
	height:100%;
}

/* youtube direct embed example */
#componentWrapper #yt_player1{
	position:absolute; 
	top:0px;
	left:0px;
	width:100%;
	height:100%;
}

/* vimeo direct embed example */
#componentWrapper #vm_player_1{
	position:absolute; 
	top:0px;
	left:0px;
	width:100%;
	height:100%;
}





/* public functions */	
#publicFunctions{
	position: absolute;
	padding: 10px 25px 20px 20px;
	background:#555;
	left:50px;
	top:50px;
	font-family:Arial, Helvetica, sans-serif;
	font-size: 16px;
	color:#fff;
	list-style:circle;
	
	-moz-box-shadow: 2px 2px 5px #222;
	-webkit-box-shadow: 2px 2px 5px #222;
	box-shadow: 2px 2px 5px #222;
	-ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=2, Direction=135, Color='#222222')";
	filter: progid:DXImageTransform.Microsoft.Shadow(Strength=2, Direction=135, Color='#222222');
	
	display:none;
}

#publicFunctions li a{
	font-family:Arial, Helvetica, sans-serif;
	font-size: 16px;
	color:#fff;
}

#publicFunctions li a:hover, #publicFunctions li .current{
	text-decoration: underline;
}
