/* Easy Slider */
#slider {
    overflow: hidden;
    height: 189px;
    z-index: 0;
    margin: 10px 0 0 36px;
    position: relative;
    width:  401px;
}
	#slider ul, #slider li {
		display: inline;
        float: left;
        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:401px;
		height:189px;
		overflow:hidden; 
        display: inline;
        float: left;
	}
    span#prevBtn {
        display:block;
		width:40px;
		height:40px;
		position:absolute;
		left: 7px;
        text-indent: -9999px;
		top: 84px;
		z-index:1000;
    }
    span#prevBtn a {
        background: url("../images/slide/slide_left.png") 0px 0px no-repeat;
        display:block;
		width:40px;
		height:40px;
        position: relative;
    }
    span#nextBtn {
        display:block;
		width:40px;
		height:40px;
		position:absolute;
		left:427px;
        text-indent: -9999px;
		top: 84px;
		z-index:1000;
    }
    span#nextBtn a {
        background: url("../images/slide/slide_right.png") 0px 0px no-repeat;
        display:block;
		width:40px;
		height:40px;
        position: relative;
    }
    
   

	
/* // Easy Slider */