/* container for slides */
.images {
	position: relative;
	height: 150px;
	width: 720px;
	float: left;
	clear: left;
	left: 0px;
	top: 0px;
	z-index: 1;
}



/* single slide */
.images div {
	position: absolute;
	top: 0;
	left: 0;		
	margin: 0;
	padding: 0;
	height: 150px;
}


/* tabs (those little squares below slides) */
.tabs {
	float: left;
	clear: left;
	z-index: 5;
	left: 6px;
	top: 3px;
	position: absolute;
}

/* single tab */

.tabs a {
	width:24px;
	height:24px;
	background: url(../slideshow/images/navigator.png) no-repeat 0 0;
	display:block;
	color: #797979;
	font: bold 12px/20px "Lucida Grande", Lucida, Verdana, sans-serif;
	text-decoration: none;
	text-align: center;
	margin: 4px 2px 0 0;
	
}

/* mouseover state */
.tabs a:hover {
	background-position:0 -24px;   
	color: #424242;
	  
}

/* active state (current page state) */
.tabs a.current {
	background-position:0 -48px; 
	color: #fff;    
} 	
