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

	/* vertical scrollers have typically larger height than width */	
	height: 316px;	 
	width: 268px;
}

/* root element for scrollable items */
.items {
	position:absolute;
	height: 316px;
	margin: 0px;
}

/* single scrollable item */
.item {
	padding:4px;
    padding-top: 2px;
	height:56px;
    width: 224px;
    #background-image: url('../images/cell1.png');
    background-repeat:no-repeat;
    border-bottom:1px solid #999999;
    #background-color: #ffffff;
}

.itemsmall {
	padding:4px;
    padding-top: 2px;
	height:40px;
    width: 224px;
    background-repeat:no-repeat;
    border-bottom:1px solid #999999;
}

.actions {
	width:220px;
	margin:20px 0 0px 0;	
}

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

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

.disabled {
	filter: alpha(opacity=40);
    filter: progid:DXImageTransform.Microsoft.Alpha(opacity=40);
    -moz-opacity: 0.40;
    opacity:0.4;
}


