﻿/* root element for scrollable */
.vertical {  
	
	/* required settings */
	position:relative;
	overflow:hidden;	

	/* vertical scrollers have typically larger height than width */	
	height: 630px;	 
	width: 100%;
	border-top:1px solid #ddd;	
}


/* root element for scrollable items */
.items {	
	position:absolute;
	
	/* this time we have very large space for height */	
	height:20000em;	
	margin: 0px;
}

/* single scrollable item */
.item {
	margin:10px 0;
	padding:5px;
	font-size:12px;
	height:138px;
	background-image: url("../images/Article-tileback.png");
	background-repeat: no-repeat;
}


/* elements inside single item */
.item img {
	float:left;
	margin-right:20px;
	height:100px;
	width:100px;
}

.item img.none 
{
   float:none;
   height:  16px; 
   width: 16px;
   padding: 0 0 0 0;
   margin: 0 0 0 0;
}




.item h3 {
	margin:0 0 1px 0;
	font-size:16px;
	color:#456;
	font-weight:normal;
	padding: 1px 1px 1px 1px;
}

/* the action buttons above the scrollable */
#actions {
	width:100%;
	margin:5px 0 5px 0;	
}

#actions a {
	font-size:14px;		
	cursor:pointer;
	color:#b4b4b4;
}

.actionsbutton
{
    background-image: url("../images/btn_more-little.png");
    background-repeat: no-repeat;
    width: 79px;
    height: 17px;
    min-height: 17px;
    text-align:center;
    
    }

#actions a:hover {
	text-decoration:underline;
	color:#000;
}

.disabled {
	visibility:hidden;		
}

.next {
	float:right;
}	

