@charset "utf-8";
/* CSS Document */

/* root element for scrollable */
.vertical {
	/* required settings */
	position:relative;
	overflow:hidden;
	/* vertical scrollers have typically larger height than width */	
	height: 241px;
	width: 180px;
	border-top:none;
	margin-left: 30px;
	margin-top: 0px;
}

/* root element for scrollable items */
.items {
	position:absolute;
	/* this time we have very large space for height */	
	height:2000em;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	font-family: Arial, Helvetica, sans-serif;
}

/* single scrollable item */
.item {
	border-bottom:1px solid #ddd;
	font-size:12px;
	height:auto;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 25px;
	padding-left: 10px;
}

/* elements inside single item */
.item img {
	float:left;
	margin-right:20px;
	height:180px;
	width:240px;
}

.item h3 {
	margin:0 0 5px 0;
	font-size:11px;
	color:#794642;
	font-weight:bold;
}

.item p {
	font-size:11px;
	color:#794642;
	font-weight:normal;
	padding: 0px;
	margin-top: -7px;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0;
}

.item ul li{
	width:141px;
	padding:0;
	float:left;
	list-style-type: none;
	margin-top: -5px;
	margin-right: 0;
	margin-bottom: 3px;
	margin-left: -40px;
}
.item ul li a{
	width:141px;
	display:block;
	padding:0 0 0 15px;
	color:#000;
	text-decoration:none;
	background-image: url(../images/news_links.png);
	background-repeat: no-repeat;
	background-position: 0 -1px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	list-style-type: none;
}

.item ul li a:hover{
	color:#000;
	text-decoration:none;
	background-image: url(../images/news_links_hover.png);
	background-repeat: no-repeat;
	background-position: 0 -1px;
	font-weight: bold;
	list-style-type: none;
	width: 141px;
}



/* the action buttons above the scrollable */
#actions {
	width:44px;
	margin-top: 0px;
	margin-right: 16px;
	margin-left: 0px;
	float: right;
}

#actions a {
	font-size:11px;		
	cursor:pointer;
	color:#666;
}

#actions a:hover {
	text-decoration:none;
	color:#000;
	font-weight: bold;
}

.disabled {
	visibility:hidden;		
}

.next {
	float:right;
}	
.prev {
	float:left;
}

