
/* container for slides */
.images {
	position:relative;
	height:233px;
	width:415px;
	top:40px;
	cursor:pointer;
	margin:auto;
	margin-bottom:75px;
	border:2px #666 solid;
}

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

/* tabs (those little circles below slides) */
.tabs {
	clear:both;
	position:absolute;
	top:280px;
	left:317px;
}

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

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

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


/* prev and next buttons */
.forward
{
	position:absolute;
	top:110px;
	right:90px;
	background:url(/images/next.jpg) no-repeat top right;
	display:block;
	width:43px;
	height:86px;
	cursor:pointer;
	text-indent:-9999em;
}
.backward
{
	position:absolute;
	top:110px;
	left:90px;
	background:url(/images/prev.jpg) no-repeat top left;
	display:block;
	width:43px;
	height:86px;
	cursor:pointer;
	text-indent:-9999em;
}

/* next */
.forward:hover
{
	background-position:bottom right;
} 


/* prev */
.backward:hover
{
	background-position:bottom left;
}

/* disabled navigational button. is not needed when tabs are configured with rotate: true */
.disabled {
	visibility:hidden !important;		
}
