/*
Supersized - Fullscreen Slideshow jQuery Plugin Stylesheet Version 3.0
By Sam Dunn (www.buildinternet.com // www.onemightyroar.com)
Version: supersized.3.0.js
Website: www.buildinternet.com/project/supersized
*/

	*{
	    margin:0;
	    padding:0;
	}
	a{
	    color:#8FC2FF;
	    text-decoration: none;
	    outline: none;
	}
	img{
	    border:none;
	}
	body {
	    overflow:hidden;/*Needed to eliminate scrollbars*/
	    background:#fff;
	}
	/*Area to place content normally*/
	#content-wrapper{
	width:100%;
/*
	position:absolute;
	top:0;
	top:0;
	bottom:0px;
	z-index:10;
*/
	padding:0;
	}
	/*Controls Section*/
	#controls-wrapper2{
			width: 250px;
		margin: 0 auto;
	    top:0;
	    z-index:15;
			position:absolute;
	}
	#controls{
	    overflow: hidden;
	    height: 100%;
	    text-align:left;
	    z-index: 5;
	    padding:0 114px; /* Increase padding to give thumbnails room */
	}

	#supersized{
	    position:fixed;
		top:0;
		left:0;
	}
	#supersized img{ -ms-interpolation-mode: bicubic; }
	#supersized img, #supersized a{
	    height:100%;
	    width:100%;
	    position:absolute;
	    z-index: -1;
	}
	
	#supersized .prevslide, #supersized .prevslide img{
	    z-index: 1;
	}
	#supersized .activeslide, #supersized .activeslide img{
	    z-index: 2;
	}
	
		/*Add hover pointer*/
		#controls > *:hover, #nextthumb:hover, #prevthumb:hover{ cursor:pointer; }
		
