@charset "utf-8";
/* SlideShow CSS Document */

/*container for slides and tabs */
#slideshow{position:relative; margin:20px 0; /*overflow:hidden;*/ height:533px; width:800px;}

/* container for slides */
.images {
	position:relative;	
	height:533px;
	width:800px;
	float:left;
	cursor:pointer;
	text-align:center;
	overflow:hidden;
}

/* single slide */
.images div {
	display:none;
	position:absolute;
	top:0;
	left:0;		
	height:533px;
	font-size:12px;
	text-align:center;
}

.images div a{border:none; text-decoration:none;}
.images img{border:none; z-index:0}

/* tabs (those little circles) */
.tabs {
	clear:both;
	position:absolute;
	right:20px;
	bottom:20px;
	z-index:99;
}

/* single tab */
.tabs a {
	width:12px;
	height:12px;
	float:left;
	margin:3px;
	background:url(../images/slideshow_navs.png) 0 -12px no-repeat;
	display:block;
	font-size:1px;
	outline:none
}

/* mouseover state */
.tabs a:hover {
	background-position:0 0px;      
}

/* active state (current page state) */
.tabs a.current {
	background-position:0 0px;     
} 	
