/* position and dimensions of the navigator */
.navi {
	margin-left:480px;
	width:200px;
	height:20px;
}
/* items inside navigator */
.navi a {
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	background:url(/images/arrow/navigator.png) 0 0 no-repeat;
	display:block;
	font-size:1px;
}
/* mouseover state */
.navi a:hover {
	background-position:0 -8px;
}
/* active state (current page state) */
.navi a.active {
	background-position:0 -16px;
}
/* this makes it possible to add next button beside scrollable */
.scrollable {
	margin-top:20px;
	margin-left:70px;
	margin-bottom:7px;
	float:left;
}
/* prev, next, prevPage and nextPage buttons */
a.browse {
	background:url(/images/arrow/hori_large.png) no-repeat;
	display:block;
	width:30px;
	height:30px;
	cursor:pointer;
	font-size:1px;
}
/* right */
a.right {
	float:right;
	background-position: 0 -30px;
	clear:right;
	margin-right: 0px;
}
a.right:hover {
	background-position:-30px -30px;
}
a.right:active {
	background-position:-60px -30px;
}
/* left */
a.left {
	float:left;
}
a.left:hover {
	background-position:-30px 0;
}
a.left:active {
	background-position:-60px 0;
}
/* up and down */
a.up, a.down {
	background:url(/images/arrow/vert_large.png) no-repeat;
	float: none;
	margin: 10px 50px;
}
/* up */
a.up:hover {
	background-position:-30px 0;
}
a.up:active {
	background-position:-60px 0;
}
/* down */
a.down {
	background-position: 0 -30px;
}
a.down:hover {
	background-position:-30px -30px;
}
a.down:active {
	background-position:-60px -30px;
}
/* disabled navigational button */
a.disabled {
	visibility:hidden !important;
}
/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
a:active {
	outline:none;
}
:focus {
	-moz-outline-style:none;
}
#newsItems a:link {
	color: #06C;
}
#newsItems a:visited {
	color: #69C;
}
#newsItems a:hover {
	color: #09C;
}
#newsItems a:active {
	color: #127DD3;
}
.scrollable img {
	width:150px;
}
#newsItems:hover {
	background-color:#FFFAF3;
	border:#CCC 1px solid;
}
#newsItems {
	float:left;
	background-color:#FFF;
	position:relative;
	padding-left:7px;
	padding-right:5px;
	color:#069;
	overflow:hidden;
	clear:right;
	width:155px;
	height:265px;
	border:#ccc 1px solid;
	font-size:11px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}
.scrollable {
	/* required settings */
	position:relative;
	overflow:hidden;
	margin-left:55px;
	width: 845px;
	height:265px;
	/* custom decorations */
	border:1px solid #ccc;
	background:url(/images/h300.png) repeat-x;
	/* CSS3 tweaks for modern browsers */

}
/*
	root element for scrollable items. Must be absolutely positioned
	and it should have a extremely large width to accomodate scrollable items.
	it's enough that you set the width and height for the root element and
	not for this element.
*/
.scrollable .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
}
/* single scrollable item */
.scrollable img {
	float:left;
	margin:5px 0px 5px 0px;
	background-color:#fff;
	border:1px solid #ccc;
	cursor:pointer;
	width:150px;
	height:150px;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}
/* active item */
.scrollable .active {
	border:2px solid #000;
	z-index:9999;
	position:relative;
}

