/*  slider container(s) */ 
#slider{
	width: 980px;
	height:380px;
    position: relative;
    overflow: hidden;
    margin:0 auto;
}
#slider li{
	margin-left:0px;
    overflow:hidden;
	list-style:none;
}

/* controls styling */
#controls{
	position:absolute;
   	bottom:4px;
	display:block;
	height:56px;
	left:8px;
	text-indent:-5000px;
	width:999px;
}
#next_btn, #prev_btn{
	display: block;
    width: 56px;
    height: 56px;
	float:right;
	outline: 0;
}
#prev_btn{
	float:left;
}
#prev_btn{
    background: url(../images/anim/prevDes.png) 0 0 no-repeat;
}
#prev_btn:hover{
    background: url(../images/anim/prevA.png) 0 0 no-repeat;
}
#next_btn{
    background: url(../images/anim/nextDes.png) 100% 0 no-repeat;
}
#next_btn:hover{
    background: url(../images/anim/nextA.png) 100% 0 no-repeat;
}

