div.slideshow {
	width: 630px; 
	height: 500px;
	/*overflow: scroll;  Allows the slides to be viewed using scrollbar if Javascript isn't available */ 
	position: relative; 
	z-index: 5;
	
}
	div.slideshow ul.nav {
		display: block;
		list-style: none;
		position: absolute; 
		top: 15px; 
		right:0;
		z-index: 15;
	}
		div.slideshow ul.nav li.prev {
			float:left;
		}
		div.slideshow ul.nav li.next {
			float:left; margin-left:1px;
		}
		div.slideshow ul.nav li a {
			display: block; padding:0px 10px; text-indent: -9999px;
		}
			div.slideshow ul.nav li.prev a {
				background:#EEE url('../../img/arrow-left.png') no-repeat center;
			}
			div.slideshow ul.nav li.next a {
				background:#EEE url('../../img/arrow-right.png') no-repeat center; 
			}

			div.slideshow ul.nav li.prev a:hover {
				background:#DDD url('../../img/arrow-left.png') no-repeat center;
			}
			div.slideshow ul.nav li.next a:hover {
				background:#DDD url('../../img/arrow-right.png') no-repeat center; 
			}

	div.slideshow ul.slides {
		list-style: none;
	}
		div.slideshow ul.slides li {
			margin: 0 0 20px 0;
		}

a {outline: none; }