@charset "utf-8";
/* CSS Document */
/* root element for scrollable */
.hideme
{
	visibility:hidden;	
}
.findme
{
	visibility:visible;		
}
.cloned
{
visibility:hidden;	
}
.myvideo
{
margin-top:-15px;	
}
.vertical {  
	
	/* required settings */
	position:relative;
	overflow:hidden;	

	/* vertical scrollers have typically larger height than width */	
	height: 510px;	 
	width: 250px;
	border-top:1px solid #ddd;	
}

/* root element for scrollable items */
.items1 {
	position:absolute;
	/* this time we have very large space for height */	
	height:3em;
	margin: 0px;
	width:250px;
	max-height:510px!important;
}

/* single scrollable item */
.item1 {
	border-bottom:1px solid #ddd;
	/*margin:10px 0;*/
	padding:9px 0 9px 0;
	font-size:12px;
	height:230px;
	visibility:inherit;
}
.item1 img {
	width:250px!important;
}
.item1 div
{
width:250px!important;	
}
/* elements inside single item */
.item1 img {
	float:left;
	margin-right:20px;
	height:180px;
	width:240px;
}

.item1 h3 {
	margin:0 0 5px 0;
	font-size:16px;
	color:#456;
	font-weight:normal;
}

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

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

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

.disabled {
	visibility:hidden;		
}

.next {
	float:right;
}	

