
/* container for slides */
.images {
	position:absolute;
	height:230px;
	width:210px;
	top:110px;
	left:20px;
	cursor:pointer;
	overflow:hidden;
}

/* 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:350px;
	left:98px;
}

/* 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 */
div#navnews
{
	width:34px;
	height:20px;
	position:absolute;
	top:50px;
	right:15px;
	padding:0;
	margin:0;
	cursor:pointer;
}
.forward
{
	float:left;
	background:url(/images/b_next.png) no-repeat top right;
	display:block;
	width:9px;
	height:20px;
	cursor:pointer;
	font-size:1px;
	text-indent:-9999em;
	padding-left:5px;
}
.backward
{
	float:left;
	background:url(/images/b_prev.png) no-repeat top left;
	display:block;
	width:9px;
	height:20px;
	cursor:pointer;
	font-size:1px;
	text-indent:-9999em;
	padding-right:5px;
}

/* 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;		
}
