@charset "utf-8";
/* CSS Document */

div.scrollable /* root element for scrollable */ 
 {
	/* required settings */ 
    position:relative;
	overflow:hidden;
	/* vertical scrollers have typically larger height than width */ 
    height: 270px;
	width: 230px;
} 
div.items/* root element for scrollable items */ 
  {
	position:absolute;
	/* this time we have very large space for the height */ 
    height:270px;
}

/* root element for scrollable */
.vertical {
	/* required settings */
	position:relative;
	overflow:hidden;
	/* vertical scrollers have typically larger height than width */	
	height: 270px;
	width: 230px;
	border-top:1px solid #ddd;
}

/* root element for scrollable items */
.items {
	position:absolute;
	/* this time we have very large space for height */	
	height:83px;
	margin: 0px;
}

/* single scrollable item */
.items div {
	border-bottom:1px solid #ddd;
	font-size:12px;
	float: left;
	height: 83px;
	width: 230px;
	padding-top: 5px;
}

.items h3 {
	font-size:12px;
	font-weight:normal;
	width: 140px;
	float: left;
	margin-top: 20px;
}

.items a:link {
	margin:0 0 0px 5;
	font-size:11px;
	font-weight:normal;
	float: left;
	text-decoration: none;
	color: #CB6B35;

}

.items a:visited {
	margin:0 0 0px 5;
	font-size:11px;
	font-weight:normal;
	float: left;
	text-decoration: none;
	color: #CB6B35;
}

.items img {
	float: left;
	margin: 0px 5px 0px 0px;
	padding: 0px;
	border: 1px solid #cccccc;
}

#title_tab {
	margin-top: 20px;
}

/* the action buttons above the scrollable */
#actions {
	width:230px;
	margin:0px 0 10px;
	height: 40px;
	background-image: url(/assets/images/news_menu_bottom_bkgrnd.jpg);
	float: left;
}

#actions a {
	font-size:11px;		
	cursor:pointer;
	color:#666;
}

#actions a:hover {
	text-decoration:underline;
	color:#000;
}

.disabled {
	visibility:hidden;		
}

.nextPage {
	float: left;
	height: 40px;
	width: 22px;
}

.prevPage {
	float: left;
	height: 40px;
	width: 22px;
	margin-left: 15px;
}