/* Easy Slider */

	#slider ul, #slider li{
		margin:0;
		padding:0;
		list-style:none;
		}
	#slider li{ 
		/* 
			define width and height of list item (slide)
			entire slider area will adjust according to the parameters provided here
		*/ 
		width:630px;
		height:276px;
		overflow:hidden; 
		}
	span#prevBtn{}
	span#nextBtn{}					
p#next{
	background-image: url(images/flashnews/button_next.gif) no-repeat;
	padding-top: 10px;
}
p#previous{
	background-image: url(images/flashnews/button_previous.gif) no-repeat;
	padding-top: 10px;
}
/* // Easy Slider */

/* Simple jQuery Slideshow */

/*** set the width and height to match your images **/
#slideshow {
    position:relative;
    height:150px;
	width:456px;
}

#slideshow IMG {
    position:absolute;
    top:0;
    left:0;
    z-index:8;
    opacity:0.0;
}

#slideshow IMG.active {
    z-index:10;
    opacity:1.0;
}

#slideshow IMG.last-active {
    z-index:9;
}

/* Simple jQuery Slideshow */