@charset "UTF-8";
/* CSS Document */



#slider{
	border: 1px solid #FFF;
	height: 150px;
	width: 123px;
	}

#slider ul, #slider li{
	margin:0;
	padding:0;
	list-style:none;
	width: 123px;
}
#slider li{
	/* define width and height of list item (slide)
	entire slider area will adjust according to the parameters provided here
	*/ 
	width:123px;
	height:150px;
	overflow:hidden;
	display: block;
	background-color: #000;
	clear: right;
}	
#prevBtn, #nextBtn{
	display:block;
	width:16px;
	height:16px;
	left:0px;
	top:0px;
	padding-left: 109px;
}
#nextBtn{
	left:0px;
	position: relative;
	top: -10px;
}														
#prevBtn a, #nextBtn a{
	display:block;
	width:16px;
	height:16px;
	background-image: url(images/arrow_up.png);
	background-repeat: no-repeat;
	background-position: 0 0px;
}
#prevBtn {	
	position: relative;
	top: -174px;
}	
#nextBtn a{
	background-image: url(images/arrow_down.png);
	background-repeat: no-repeat;
	background-position: 0 0;
}												
