/*
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;
		}
		
	img {
	    border:none;
		}
		
	body {
	    overflow:hidden; /*Needed to eliminate scrollbars*/
	    background:#fff;
		}
		
	/*Area to place content normally*/
	#wrapper { 
		width:100%; 
		height:100%; 
		position:absolute; 
		top:0; 
		overflow:auto; 
		z-index:4; 
		text-align:center; 
		}
	
	/*Controls Section*/
	#controls-wrapper {
	    height: 100%;
	    width: 100%;
	    z-index: 5;
	    position:absolute;
	    border: 1px solid red;
		}

	/*Supersize Plugin Styles*/
	#loading {
	    position: absolute;
	    top: 49.5%; 
	    left: 49.5%;
	    z-index: 10;
	    width: 24px; 
	    height: 24px;
	    text-indent: -999em;
	    background-image: url(images/progress.gif);
		}
		
	#supersized {
	    position:fixed;
		}
		
	#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; }		
		
		
	/* Arrows
	-------------------------------------------------------------------------- */
	
	#slideshowControls {
	    margin: 0 auto;
	    width: 100%;
	    z-index: 5;
	    position: relative;
	    top: 50%;
	    /* position: absolute;
	    top: 400px; */
		}
		
	#navigation {
		position: relative;
		bottom: 70px;
		}
		
	#prevslide {
		float: left;
		margin-left: 25px;
		cursor: pointer !important;
		}
		
	#nextslide {
		float: right;
		margin-right: 25px;
		cursor: pointer !important;
		}
		
	#prevslide:link, #prevslide:visited, #nextslide:link, #nextslide:visited {
		width: 86px;
		height: 127px;
		text-indent: -9000px;
		overflow: hidden;
		display: block;
		}
		
	#prevslide:link, #prevslide:visited { background: url(images/left.png) 0 0 no-repeat; }
	#prevslide:hover, #prevslide:focus, #prevslide:active { background: url(images/left.png) 0 100% no-repeat; }
	#nextslide:link, #nextslide:visited { background: url(images/right.png) 0 0 no-repeat; }
	#nextslide:hover, #nextslide:focus, #nextslide:active{ background: url(images/right.png) 0 100% no-repeat; }
	
	
	
	
	
		