/* 
	root element for the scrollable. 
	when scrolling occurs this element stays still. 
*/

div.newsScroll {
	position:relative;
	overflow:hidden;
	width: 900px;
	height:600px;		
}

div.newsScroll div.items {
	width:20000em;
	position:absolute;
	clear:both;

}
/* single scrollable item */
div.newsScroll div.items div {
	float:left;
	width:271px;
	padding-right:15px;
	border-right:1px solid #ebebeb;
	margin-right: 20px;
}
/* active item */
div.newsScroll div.items div.active {
border:0;
border-right:1px solid #ebebeb;		
}

div.newsScroll div.items div img {
	display:block;
	margin:0 auto;
}
.date, a.date, a.date:hover {
	font-family:Georgia, "Times New Roman", Times, serif;
	color:#ea984f;
	font-size:16px;
	text-decoration:none;
}
a.date:hover {
	color:#29a3bd;
}
/* prev, next, prevPage and nextPage buttons */
a.prev, a.next {
	display:block;
	width:69px;
	height:20px;
	background:url(/images/news/prev.gif) no-repeat;
	float:left;
	margin:0px 0 20px;
	cursor:pointer;
	font-size:1px;
	text-decoration:none;
}
/* mouseover state */
a.prev:hover, a.next:hover {
	background-position:0px -20px;
	text-decoration:none;
}
/* disabled navigational button */
a.disabled {
	visibility:hidden !important;
	text-decoration:none;
}
/* next button uses another background image */
a.next {
	background-image:url(/images/news/next.gif);
	float:right;
	text-decoration:none;
}

/* == Article Page == */
div.article {
	clear:both;
}
div.article img {
	float:left;
	margin: 10px 10px 10px 0;
	padding: 9px;
	border: 1px solid #ebebeb;
}