/* root element for scrollable */
.vertical {  
	
	/* required settings */
	position:relative;
	overflow:hidden;	

	/* vertical scrollers have typically larger height than width */	
	height: 400px;	 
	width: 200px;
	/*border-top:1px solid #ddd;	*/
	border-bottom:1px solid #ddd;	
}

/* root element for scrollable items */
.items_vert {	
	position: relative;
	
	/* this time we have very large space for height */	
	height:200px;	
	margin: 0px;
}

/* single scrollable item */
.items_vert div {
	border-bottom:1px solid #ddd;
	margin:10px 0;
	padding:15px;
	font-size:12px;
	height:400px;
}

/* elements inside single item */
.sliderRecom img {
	float:left;
	margin-right:20px;
	height:250px;
	width:180px;
	position:relative;
	cursor:  pointer;
}

.items_vert h3 {
	margin:0 0 5px 0;
	font-size:16px;
	color:#456;
	font-weight:normal;
}

/* 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;		
}

.nextPage {
	float:right;
}	


.vert_link {
clear:both;
float:left;
display:inline;
height:auto;
white-space: nowrap;

/*margin-top:20px;*/

}
span.genrez{
white-space:nowrap;

}


.vert_link h4 a {
color:#002BB8;
text-decoration:none;
}

.vert_link h4 a:hover {
color:#002BB8;
text-decoration:underline;
}



