/* root element for scrollable */
.left_tab_menu
{width:289px;
background:#52729c url(../images/left_tab_bg.gif) left bottom repeat-x; overflow:hidden;
}
.vertical {  
	
	/* required settings */
	position:relative;
	overflow:hidden;	
	/* vertical scrollers have typically larger height than width */	
	height: 275px;	 
	/*width: 300px;*/
}

/* root element for scrollable items */
.items {	
	position:absolute;
	
	/* this time we have very large space for height */	
	height:20000em;	
	margin: 0px;
    width:290px;
}

/* single scrollable item */
.items_link
{text-decoration:none; color:#FFFFFF; 	border-top:1px solid #325790;	font-size:11px;
width:100%;
}
.items_link a
{text-decoration:none; color:#FFFFFF; display:block; padding:5px 10px; background:none;
}

.items_link a:hover
{text-decoration:none; color:#FFFFFF; background:#ed8122;
}

.actions a span
{visibility:hidden;
}

/* elements inside single item */
.items img {
	float:left;
	margin-right:20px;
	height:180px;
	width:240px;
}

.items h3 {
	margin:0 0 5px 0;
	font-size:16px;
	color:#456;
	font-weight:normal;
}

/* the action buttons above the scrollable */
.actions {
	margin:0px 0;
	text-align:center;	
	background-color:#244878;	
}

.actions a {
	font-size:11px;		
	cursor:pointer;
	color:#244878;
	background-color:#244878;
}

.actions a:hover {
	text-decoration:underline;
	color:#244878;
}

.disabled {
	visibility:hidden;		
}

.prevPage {
	/*float:right;*/
	text-align:center;
	background:url(../images/tab_arrow_top.gif) center no-repeat;
	
}	
.nextPage {
	/*float:right;*/
	text-align:center;
	background:url(../images/tab_arrow_bottom.gif) center no-repeat;
}	


