

/*Setup Slide Size*/
#slideshow{
	width:1024px;
	height:768px;
	position:relative;
}

/*Show the Previous Button*/
#slideshow .prevButton{
	height:72px;
	width:68px;
	position:absolute;
	background:url('../Image/photos/buttons.png') no-repeat;
	top:50%;
	margin-top:-36px;
	cursor:pointer;
	z-index:2000;
	background-position:left top;
	left:0
}

#slideshow .prevButton:hover{ background-position:left bottom;left:0;}

/*Show the Next Button*/
#slideshow .nextButton{
	height:72px;
	width:68px;
	position:absolute;
	background:url('../Image/photos/buttons.png') no-repeat;
	top:50%;
	margin-top:-36px;
	cursor:pointer;
	z-index:2000;
	background-position:right top;
	right:0
}

#slideshow .nextButton:hover{background-position:right bottom;right:0;}


#slideshow ul{
	width:1024px;
	height:768px;
	list-style:none outside none;
	position:relative;
	overflow:hidden;
}

#slideshow li:first-child{
	display:list-item;
	position:absolute;
}

#slideshow li{
	position:absolute;
	display:none;
}


