/* root element for scrollable */
.vertical {  
	
	/* required settings */
	position:relative;
	overflow:hidden;	

	/* vertical scrollers have typically larger height than width */	
	height: 425px;	 
	width: 300px;
	border-top:2px solid #ccc;	
}

.vertical2 {  
	
	/* required settings */
	position:relative;
	overflow:hidden;	

	/* vertical scrollers have typically larger height than width */	
	height: 220px;	 
	width: 300px;
	border-top:2px solid #ccc;	
}

.vertical3 {  
	
	/* required settings */
	position:relative;
	overflow:hidden;	

	/* vertical scrollers have typically larger height than width */	
	height: 425px;	 
	width: 290px;
	border-top:2px solid #ccc;	
}

/* root element for scrollable items */
.items {	
	position:absolute;
    background-color:#efefef;
	/* this time we have very large space for height */	
	height:10000em;
	width: 300px;
	margin: 0px;
}

/* root element for scrollable items */
.items2 {	
	position:absolute;
    background-color:#efefef;
	/* this time we have very large space for height */	
	height:10000em;
	width: 290px;
	margin: 0px;
}

/* root element for scrollable items */
.items3 {	
	position:absolute;
    background-color:#efefef;
	/* this time we have very large space for height */	
	height:100px;
	width: 240px;
	margin: 0px;
}

/* single scrollable item */
.items div {
	border-bottom:1px solid #ddd;
	margin:10px 10px;
	padding:0px;
	font-size:10px;
	height:85px;
}

/* single scrollable item */
.items2 div {
	border-bottom:1px solid #ddd;
	margin:10px 10px;
	padding:0px;
	font-size:10px;
	height:95px;
}

/* single scrollable item */
.items3 div {
	border-bottom:1px solid #ddd;
	margin:10px 10px;
	padding:0px;
	font-size:10px;
	height:85px;
}

/* elements inside single item */
.items img {
	float:left;
	margin-right:10px;
	height:80px;
	width:100px;
}

/* elements inside single item */
.items2 img {
	float:left;
	margin-right:10px;
	height:80px;
	width:100px;
}

/* elements inside single item */
.items3 img {
	float:left;
	margin-right:10px;
	height:80px;
	width:100px;
}

.items h3 {
	margin:0 0 0px 0;
	font-size:12px;
	color:#510972;
	font-weight:bold;
	font-family: Arial, Helvetica, sans-serif;
	text-align: left;
}

.items2 h3 {
	margin:0 0 0px 0;
	font-size:12px;
	color:#510972;
	font-weight:bold;
	font-family: Arial, Helvetica, sans-serif;
	text-align: left;
}

.items3 h3 {
	margin:0 0 0px 0;
	font-size:12px;
	color:#510972;
	font-weight:bold;
	font-family: Arial, Helvetica, sans-serif;
	text-align: left;
}

/* the action buttons above the scrollable */
#actions {
	width:200px;
	margin:8px 8px 5px 12px;
	text-align: left;
}

#actions a {
	font-size:11px;		
	cursor:pointer;
	color:#A434E7;
}

#actions a:hover {
	text-decoration:underline;
	color:#F90A17;
}

.disabled {
	visibility:hidden;		
}

.nextPage {
	float:right;
}	

/* root element for scrollable items on main page */
.itemsmain {	
	position:absolute;
    background-color:#efefef;
	/* this time we have very large space for height */	
	height:10000em;
	width: 300px;
	margin: 0px;
}

/* single scrollable item */
.itemsmain div {
	border-bottom:1px solid #ddd;
	margin:10px;
	padding:5px;
	font-size:10px;
}

.itemsmain h3 {
	margin:0 0 0px 0;
	font-size:12px;
	color:#510972;
	font-weight:bold;
	font-family: Arial, Helvetica, sans-serif;
	text-align: left;
}

.itemsmain h4 {
	margin:0 0 0px 0;
	font-size:12px;
	color:#F90A17;
	font-weight:bold;
	font-family: Arial, Helvetica, sans-serif;
	text-align: left;
}