/*	----------------------------------------------------------------
	MaxCycle (Fullscreen Slideshow for use with jQuery Cycle Plugin)
	----------------------------------------------------------------
	
	Demo at: http://www.aaronvanderzwan.com/maxcycle/
	Download and Info at: http://github.com/akv2/MaxCycle---jQuery-Plugin/
	Copyright (c) 2007-2011 Aaron Vanderzwan
	Dual licensed under the MIT and GPL licenses.
	
*/
/*! Version: 2.0.73 BLG (10-Aug-2013) */


.mc-hide-scrolls{
	overflow:hidden;
}

body .mc-cycle {
	height:100%;
	left:0;
	overflow:hidden;
	position:fixed;
	top:0;
	width:100%;
	z-index:-1;
}

div.mc-image {
	/*NOTE: Mozilla flickers when fading and using 'all', so we have to be specific with what property we want to transition:
	 If you are using fading transitions, use 'opacity: */
	-webkit-transition: opacity 1s ease-in-out; 
	-moz-transition: opacity 1s ease-in-out; 
	-o-transition: opacity 1s ease-in-out; 
	transition: opacity 1s ease-in-out;
	
	/*If you are using horizontal slide transitions, use the following CSS:
	-webkit-transition: left 1s ease-in-out; 
	-moz-transition: left 1s ease-in-out; 
	-o-transition: left 1s ease-in-out; 
	transition: left 1s ease-in-out;*/
	
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	background-position:center center;
	background-repeat:no-repeat;
	height:100%;
	overflow:hidden;
	width:100%;
}

.mc-old-browser .mc-image {
	overflow:hidden;
}

/* to center and locate the animated loading image */
#cycle-loader {
	position:absolute;
	left:50%;
	top:50%;
	margin:-8px 0 0 -8px;
	width:32px;
	height:32px;
	z-index:99;
	}



/* for FULLSCREEN slideshow, provide this container */
#maximage_Container_fullScreen {
	position: absolute;
	display: block;
	overflow:hidden;
	left:0px;
	right:0px;
	top:0px;
	bottom:0px;
	z-index:-1;
/*	background:red;	*/
}

/* for inset NON-FULLSCREEN slideshow, provide this container */
#maximage_Container {
	position: absolute;
	display: block;
	overflow:hidden;
	left:0;
	right:50px;
	top:100px;
	bottom:20px;
	z-index:-1;
/*	background:red;	*/
}

#maximage,
#maximage_inSetScreen {
	position:fixed !important;	
	z-index:-1;
}

#maximage_fullScreen {
	position:fixed !important;	
	z-index:-1;
}
#maximage_inSetScreen {
	display:none;
	left:40%;
	right:50px;
	top:100px;
	bottom:20px;
/*	background:red;	*/
}








/*	maxImage slideShow Controls	*/
#slideshowNavigation_container ul {
	list-style-type:none;
	}
#slideshowNavigation_container {
	display:block;
	position:absolute;
	width: 80px;
	height:50px;
	left:5%;
	right:auto;
	top:120px;
	*border:none;
	*outline:none;
	overflow:hidden;
/*	z-index:5;	*/
/*	background:red;	*/
	}
#arrow_left, #arrow_right, #pause_play {
	position:relative;
	height:40px;
	width:40px;	
	top:3px;
	left:0px;
	padding-left:2px;
	}

#slideshowNavigation_container img {
	height:22px;
	width:22px;
	border:0;
	border-radius:300px;
	box-shadow:0 0 4px rgba(0, 0, 0, 0.6);
	-moz-box-shadow:0 0 4px rgba(0, 0, 0, 0.6);
	-webkit-box-shadow:0 0 4px rgba(0, 0, 0, 0.6);	
	}

#arrow_right:hover,
#arrow_left:hover,
#pause_play:hover,
#projectPopUpText li:hover,						
#projectPopUpText li:active,
.in_slide_infoPopUp_Content li:hover,
.in_slide_infoPopUp_Content li:active
	{
	opacity: 0.8;
	filter: alpa(opacity=80); 
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
	transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	}





/*	maxImage thumbnails*/
#slideShow_thumbnails
	{
	display:block;
	position: absolute;
	overflow: visible;
	top: 160px;
	bottom:60px;
	left:5%;
	right:auto;
	list-style-type:none;
/*	background:red;	*/
	}
#slideShow_thumbnails,
#slideShow_thumbnails ul 
	{
    list-style-type:none;
	}
#slideShow_thumbnails img 
	{
	border-style: solid;
	border-width: 1px;
	border-radius: 5px;	
	}
#slideShow_thumbnails ul li 
	{
	text-align:left !important;
	opacity: 0.6;
	filter: alpha(opacity=60); 
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
	}
#slideShow_thumbnails ul li a, 
#slideShow_thumbnails ul li.activeSlide,
#slideShow_thumbnails ul li:hover, 
#slideShow_thumbnails ul li:active 
	{
	opacity:1.0;
	filter: alpha(opacity=100); 
	-ms-filter:"alpha(opacity=100)";
	}
