@charset "utf-8";

/*  Pod Box Corners, Drop Down boxes Corners */
.ph_tl { background-repeat: no-repeat; background-position: left top; }
.ph_tr { background-repeat: no-repeat; background-position: right top;}
.ph_bl { background-repeat: no-repeat; background-position: left bottom;}
.ph_br { background-repeat: no-repeat; background-position: right bottom;}

#slideshow {
	width: 690px;
	height: 260px;
	overflow: hidden;
	overflow-x: hidden;
	overflow-y: hidden;
	position: relative;
	z-index: 2;
}

#overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 690px;
	height: 260px;
	background: url(../images/slideshow-trans.png) no-repeat top left;
	z-index: 3;
}

#slides {
	position: relative;
	z-index: 1;
}
#slides img {
	height: 260px;
	width: 690px;
}


/* Play Controls */
#playcontrols {
	position: absolute;
	bottom: 1em;
	left: 190px;
	z-index: 10;
}

#play, #next, #prev {
	width: 26px;
	height: 26px;
	background-repeat: no-repeat;
	background-position: top left;
	text-indent: -1000em;
	cursor: pointer;
	float: left;
	display: block;
}
	#play {		background-image: url(../button_stop.png);}
	#next {		background-image: url(../images/button_next.png);}
	#prev {		background-image: url(../images/button_prev.png);}

#next:hover, #prev:hover, #play:hover {	opacity : 1; cursor: pointer;}
