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

	/* vertical scrollers have typically larger height than width */	
	height: 350px;	 /*665*/
	width: 902px; /*700*/
}

/* root element for scrollable items */
.sc_items {	
	position:absolute;
	
	/* this time we have very large space for height */	
	height:20000em;	
	margin: 0px;
}

/* single scrollable item */
.sc_item {
	margin:0;
	padding:8px 30px 0 0;
	font-size:14px;
	color:#dcdada;
	height:342px;
	font-family:"Times New Roman", Georgia;
}

.sc_item p {
	font-size:14px;
	color:#dcdada;
	font-family:"Times New Roman", Georgia;
	margin-bottom:14px;
text-align:justify;
}

.sc_item p a {
	font-size:14px;
	color:#dcdada;
	font-family:"Times New Roman", Georgia;
}

/* elements inside single item */
.sc_item img {
	float:left;
	margin-right:20px;
	height:342px;
	width:512px;
}

.sc_item h3 {
	margin:12px 0;
	font-size:17px;
	color:#ffffff;
	font-weight:normal;
	font-family:Georgia, "Times New Roman";
}

/* the action buttons above the scrollable */
#actions {
	width:700px;
	margin:30px 0 10px 0;	
}

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

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

.disabled {
	visibility:hidden;		
}

.next {
	float:right;
}	
