/*

	Supersized - Fullscreen Slideshow jQuery Plugin
	Version : 3.2.0
	Site	: www.buildinternet.com/project/supersized
	
	Theme 	: Shutter
	Author	: Sam Dunn
	Company : One Mighty Roar (www.onemightyroar.com)
	License : MIT License / GPL License
	
*/


#controls-wrapper {
    margin:0 auto;
    height:42px;
    width:100%;
    bottom:0px;
    left:0;
    z-index:1000;
    /* background:url(../img/bottombar.png) repeat-x; */
    position:fixed;
}

#controls {
    overflow:hidden;
    height:100%;
    position:relative;
    text-align:left;
    z-index:1500;
}
                


#play-button {
    float:left;
    margin-top:1px;
}
					                                        
#play-button:hover {
    background-position:0 1px;
    cursor:pointer;
}

#play-button2 {
    position: relative;
    float: right;
    margin-top: 15px;
    margin-right: 20px;
}
				

#prevslide, #nextslide {
    position:absolute;
    height:36px;
    width:26px;
    top:70%;
    margin-top:-21px;
    display: block;
    z-index:1500;
}
					
#prevslide {
    left:20px;
    background: url("../img/prevslide.png") top left no-repeat;
}

#nextslide {
    right:20px;
    background: url("../img/nextslide.png") top left no-repeat;
}

#prevslide:active, #nextslide:active {
    margin-top:-19px;
}

#prevslide:hover {
    background: url("../img/prevslide.png") bottom left no-repeat;    
    cursor:pointer;
}

#nextslide:hover {
    background: url("../img/nextslide.png") bottom left no-repeat;    
    cursor:pointer;
}

				
ul#slide-list {
    padding:15px 0;
    float:left;
    position:absolute;
    left:50%;
}

ul#slide-list li {
    list-style:none;
    width:13px;
    height:18px;
    float:left;
    margin:0 5px 0 0;
}
						
ul#slide-list li.current-slide a, ul#slide-list li.current-slide a:hover {
    background-position:0 0px;
}

ul#slide-list li a {
    display:block;
    width:13px;
    height:18px;
    background:url('../img/slides.png') no-repeat 0 -36px;
}

ul#slide-list li a:hover {
    background-position:0 -18px;
    cursor:pointer;
}




				
				#tray-button{ float:right; margin-top:1px; border-left:1px solid #333; background:url('../img/bg-hover.png') repeat-x 0 44px; }
					#tray-button:hover{ background-position:0 1px; cursor:pointer; }
		
