/*---------------------------Slideshow Classes---------------------------------------*/
#slideshow { 
    height:400px;
    position:relative;
    margin-top:0px;
    width:100%;
	}
#slides {
    width:100%;
    height:400px;
	position: relative;
	margin:0; 
	padding:0;
    z-index:0;
	}

#slides li
{
    width:100%;
    height:400px;
    position: absolute; 
    top:0px;
    left: 0px; 
    display: block; 
    z-index:1;
    background-position:center; 
    background-size: cover;
}

#slideshow  #slide_navigation
    {
        float:right;
        position:relative;
	height:20px;
	padding:0;
	margin-top:-25px;
    margin-right:10px;
    }
#slideshow  #slide_navigation a { 
	text-indent:-9990px; 
	display:block; 
	width:12px;
	height:12px; 
	float:left;
	margin-left:5px; 
	cursor:pointer; 
	overflow:hidden;
	background:url("../../img/cycle/slide_navigation_noactive.png") no-repeat 0 0;
}
	
#slideshow  #slide_navigation a:hover { 
	background: url("../../img/cycle/slide_navigation_hover.png") no-repeat 0 0; }
	
#slideshow  #slide_navigation a.activeSlide { 
	background: url("../../img/cycle/slide_navigation_active.png") no-repeat 0 0; }
