/* root element for scrollable */
.vertical {  
	
	/* required settings */
	position:relative;
	overflow:hidden;	

	/* vertical scrollers have typically larger height than width */	
	height: 480px;	 
	width: 157px;
	border-top:1px solid #ffcb78;
	border-bottom:1px solid #ffcb78;	
}

/* root element for scrollable items */
.vertical .items {	
	position:absolute;
	
	/* this time we have very large space for height */	
	height:1000em;	
	margin: 0px;
}

/* single scrollable item */
.vertical .items div {
	border:0px;
	margin:10px 0;
    padding-left:7px;
	font-size:12px;
	height:118px;
	width:100%;
}

/* elements inside single item */
.vertical .items img {
	float:left;
	margin-right:20px;
	height:100px;
	width:140px;
	margin:0px;
	border:0px;
}

.vertical .items h3 {
	margin:0 0 5px 0;
	font-size:16px;
	color:#456;
	font-weight:normal;
}

/* the action buttons above the scrollable */
.vertical .actions {	
	margin:5px;
	
}

.vertical .actions a {
	font-size:11px;		
	line-height:11px;
	cursor:pointer;
	color:#666;
}

.vertical .actions a:hover {
	text-decoration:underline;
	color:#000;
}

.disabled {
		
}	

.vUp
{
    WIDTH: 30px; DISPLAY: block; HEIGHT: 20px; FONT-SIZE: 1px; CURSOR: pointer;
    BACKGROUND: url(../image/subject/sj2.jpg) no-repeat;
    BACKGROUND-POSITION: 5px 5px;
    margin-left:auto;
    margin-right:auto;    
    clear:both;
}

.vDown {
	WIDTH: 30px; DISPLAY: block; HEIGHT: 20px; FONT-SIZE: 1px; CURSOR: pointer;
	BACKGROUND: url(../image/subject/sj1.jpg) no-repeat;
	BACKGROUND-POSITION: 5px 5px;
	margin-left:auto;
    margin-right:auto;
    
}


