/* Slider */
#startimage-image ul {
	width: 820px;
	height: 320px;
	margin: 0;
	padding: 0;
	list-style: none;
}

#startimage-image li { 
	/* 
		define width and height of list item (slide)
		entire dateslider area will adjust according to the parameters provided here
	*/ 
	margin: 0;
	padding: 0;
	width: 820px;
	height: 320px;
	overflow: hidden; 
}	


#prevBtn, #nextBtn { 
	display: block;
	width: 50px;
	height: 50px;
	position: absolute;
	left: 0;
	top: 135px;
	z-index: 1000;
}	

#prevBtn { 
	left: 5px;
}

#nextBtn { 
	left: 825px;
}

#prevBtn a, #nextBtn a {  
	display: block;
	position: relative;
	width: 50px;
	height: 50px;
	background: url(../../imgs/sev/startsliderbutton_left.png) no-repeat 0 0;
	overflow: hidden;
}	

#prevBtn a:hover, #nextBtn a:hover {  
	background-position: 0 -50px;
}

#nextBtn a { 
	background: url(../../imgs/sev/startsliderbutton_right.png) no-repeat 0 0;	
}	

