*{
	margin:0;
	padding:0;
	border:0;
	outline:none;
}

a{ 
	text-decoration: none; 
}

ul{
	list-style: none;
}

body {
	font-size: 100%;
	background:#ccc;
}






/* 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:520px;
	height:270px;
	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:10px;
	left:10px;
	width:500px;
	height:250px;
	overflow:hidden;
	/*background:red;*/
}

/* 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: relative;
	left:0px;
	bottom:0px; 
	color: #fff; 
	font-size:20px;
	font-family:Arial, Helvetica, sans-serif;
	padding: 5px; 
	margin-bottom:5px;
	background-color: rgb(60, 80, 100);
	background-color: rgba(60, 80, 100, 0.7);
	float:left;
	clear:both;
	white-space: nowrap;   
}

#componentWrapper .caption_one a{
	color:white;
	/*text-decoration:underline;*/
}

#componentWrapper .caption_one a:hover, a:active{
    text-decoration:underline;
}

/* second caption */
#componentWrapper .caption_two {
	position: relative;
	left:0px;
	bottom:0px; 
	color: #699; 
	font-size:20px;
	font-family:Arial, Helvetica, sans-serif;
	padding: 5px; 
	margin-bottom:5px;
	background-color: rgb(0, 0, 0);
	background-color: rgba(0, 0, 0, 0.7);
	float:left;
	clear:both;
	white-space: nowrap;   
}

/* third caption */
#componentWrapper .caption_three {
	position: relative;
	left:0px;
	bottom:0px; 
	color: #9C9; 
	font-size:20px;
	font-family:Arial, Helvetica, sans-serif;
	padding: 5px; 
	background-color: rgb(10, 30, 70);
	background-color: rgba(200, 30, 70, 0.7);
	float:left;
	clear:both;
	white-space: nowrap;   
}

/* caption font sizes for different component sizes */
#componentWrapper .caption_font_large {
	font-size:20px;	
}

#componentWrapper .caption_font_medium {
	font-size:17px;
}

#componentWrapper .caption_font_small {
	font-size:13px;
	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;
}
