#slideshow {
	background-color: #23282d;
	margin-bottom: 20px;
	text-align: center;
	width: 500px;
	height: 345px;
}

.slideshowContent ul {
	list-style: none;
	position: absolute;
	padding: 0px;
	margin: 0px;
	top: 0px;
	left: 0px;
}

.slideshowContent ul li {
	padding: 0px;
	margin: 0px;
	width: 250px;
	height: 345px;
	float: left;
}

.slideshowContent ul li a {
	overflow: hidden;
	display: block;
	width: 250px;
	height: 345px;
}
.slideshowContent ul li a:hover {
	text-decoration: underline;
}

.slideshowContent ul li a span {
	padding-left: 300px;
	display: block;
	width: 250px;
	height: 345px;
	
	/*This wont validate, and no way to achieve it*/
	filter: alpha(opacity=80);
	-moz-opacity:.80;
	opacity:.80;
}

.slideshowContent ul li.previous a:hover span {
	background: url(../img/ssPrevious.gif) center left no-repeat;
}

.slideshowContent ul li.next a:hover span {
	background: url(../img/ssNext.gif) center left no-repeat;
}









