*{
	margin:0;
	padding:0;
	border: 0;
	outline:none;
}

a{ 
	text-decoration: none; 
}

ul{
	list-style: none;
}

/* main component holder */
#componentWrapper{
	position:relative;
	width:100%;
	height:600px;
	border:solid 1px #ddd;

	overflow:hidden;  
}

/* header at the top for menu and navigation */
#componentWrapper .componentHeader{
	position:absolute;
	top:0px;
	left:0px;
	width:100%;
	height:40px;
	background:#f5f5f5;
}

/* content holder, lies below componentHeader */
#componentWrapper .componentContent{
	position:absolute;
	top:40px;
	left:0px;
	/* size is set with jquery code base on layout (horizontal/vertical) */
}


#componentWrapper .gallery_menu{
	position:absolute;
	top:10px;
	left:30px;
	display:none;/*hide menu on beginning*/
}



/* navigation holder */
#componentWrapper .component_controls{
	position:absolute; 
	height:30px;
	top:5px;
	right:10px;
	display:none;
	/*background:green;*/
}

#componentWrapper .component_controls img{
	display:block;
	width:30px;
	height:30px;
}

/* controls */
#componentWrapper .controls_backward,
#componentWrapper .controls_pausePlay,
#componentWrapper .controls_forward,
#componentWrapper .controls_direction,
#componentWrapper .controls_fullscreen,
#componentWrapper .controls_music{
	position:relative;
	width:30px;
	height:30px;
	float:right;
	margin-left:10px;
	/*background:red;*/
}

#componentWrapper .controls_backward{
	margin-left:0px;
}

/* image title */
#componentWrapper .image_title{
	position:absolute; 
	bottom:25px;
	left:50%;
	/*title is centered in jquery*/
	background:#ccc;
	color:#ffffff;
	padding: 5px 10px 5px 10px;
	font-size:20px;
	-webkit-font-smoothing: antialiased;
	
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
}

/* holder for both image link and image details icons */
#componentWrapper .image_data{
	position:absolute; 
	width:30px;
	right:25px;
	top:25px;
	/*background:red;*/
}

/* image link, image details for lightbox */
#componentWrapper .image_link, #componentWrapper .image_detail{
	position:relative; 
	width:30px;
	height:30px;
	left:0px;
	top:0px;
}

/* margin between image data buttons */
#componentWrapper .image_data_space{
	margin-top:10px;
}



/* playlist data, remains hidden */
#componentWrapper .componentPlaylist{
	display:none;	
}

/* playlist data, remains hidden */
#componentWrapper .musicPlaylist{
	display:none;	
}




/* public functions */	
#publicFunctions{
	position: absolute;
	padding: 10px 25px 20px 20px;
	background:#444;
	left:50px;
	top:50px;
	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{
	color:#fff;
}

#publicFunctions li a:hover, #publicFunctions li .current{
	text-decoration: underline;
}
