/*
* @copyright 2012 NinjaForge - All rights reserved.
*/
.items {
	position:absolute;
	width:20000em;
}
.active {
	z-index:9999;
	position:relative;
}
.nm_module{
	overflow:hidden;
	margin:5px;
	padding:4px;
}
.buttons {
	float:left;
	clear:both;
	height:20px;
}
/* prev, next, prev and next buttons */
a.browse {
	font-variant: small-caps;
	cursor: pointer;
}
/* right */
a.right {
	background-position: right top;
	background-image: url(../images/next.png);
	background-repeat: no-repeat;
	padding-right: 20px;
}
/* left */
a.left {
	background-image: url(../images/prev.png);
	background-position: left top;
	background-repeat: no-repeat;
	padding-left: 20px;
}
/* disabled navigational button */
a.disabled {
	visibility:hidden !important;
}
/* position and dimensions of the navigator */
.navi {
	height:20px;
}
/* items inside navigator */
.navi a {
	width:8px;
	height:8px;
	margin:3px;
	display:block;
	font-size:1px;
	background-image: url(../images/navigator.png);
	background-repeat: no-repeat;
	background-position: 0 0;
	float:left;
}
/* mouseover state */
.navi a:hover {
	background-position:0 -8px;
}
/* active state (current page state) */
.navi a.active {
	background-position:0 -16px;
}
