/* container for slides */
.images {
	position:relative;
	height:90px;
	width:960px;
	float:left;
	cursor:pointer;
}

/* single slide */
.images div {
	display:none;
	position:absolute;
	top:0;
	left:0;
	height:90px;
	font-size:12px;
}

/* tabs (those little circles below slides) */
.slidetabs {
	clear:both;
	margin-left:450px;
	margin-top: 8px;
}

/* single tab */
.slidetabs a {
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	display:block;
	font-size:1px;
	background-image: url(../images/navigator.png);
	background-repeat: no-repeat;
	background-position: 0 0;
}

/* mouseover state */
.slidetabs a:hover {
	background-position:0 -8px;      
}

/* active state (current page state) */
.slidetabs a.current {
	background-position:0 -16px;     
} 	#stop {
	background-image: url(../images/play_stop.png);
	background-repeat: no-repeat;
	height: 10px;
	width: 10px;
	float: left;
	margin-left: 15px;
	background-position: 0px 0px;
	margin-top: 1px;
}
#stop:hover {
	background-image: url(../images/play_stop.png);
	background-repeat: no-repeat;
	background-position: 0px -10px;
}
#play {
	background-image: url(../images/play_stop.png);
	background-repeat: no-repeat;
	height: 10px;
	width: 10px;
	float: left;
	margin-left: 8px;
	background-position: -10px 0px;
	margin-top: 1px;
}
#play:hover {
	background-image: url(../images/play_stop.png);
	background-repeat: no-repeat;
	background-position: -10px -10px;
}
