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

	/* vertical scrollers have typically larger height than width */	
	height: 370px;	 
	width: 475px;
	margin-left:15px;	
}

div.scrollable.vertical a{  
	color:#FFFFFF;
	text-decoration:none;
}

/* root element for scrollable items */
div.scrollable.vertical div.items {	
	position:absolute;
	
	/* this time we have very large space for height */	
	height:20000em;	
	margin: 0px;
}

/* override item style defined in scrollable.css */
div.scrollable div.items div {
	float:none;
	margin:0px;
	margin-bottom:10px;
}

/* single scrollable item */
div.scrollable div.items div {
	float:left;
	
	/* background image */
	background: #1a3f53 url(images/loading.gif) no-repeat center;
	
	
	/* text/font settings */
	color:#fff;
	text-align:center;
	width:475px;
	height:170px;
	padding:0;
	padding-top:5px;
	font-size:12px;
	margin-right: 10px;	
	font-family:arial;
	cursor:pointer;
}

div.scrollable div.items div img{
border:#FFFFFF 1px;
}



/* mouseover state */
div.scrollable div.items div:hover {	
background: #425866 url(images/loading.gif) no-repeat center;
}

/* clicked state */
div.scrollable div.items div:active {	
background: #425866 url(images/loading.gif) no-repeat center;
}

/* active item */
div.scrollable div.items div.active {	
background: #425866 url(images/loading.gif) no-repeat center;
cursor:pointer;
}


div.scrollable div.items div.active img{
border:#FFFFFF 1px solid;
}


.prev {
width:18px;
height:18px;
background:url(images/up.jpg) no-repeat 0 0;
position:absolute;
left:515px;
cursor:pointer;
top:40px;
}

a.prev:hover{
width:18px;
height:18px;
background:url(images/up.jpg) no-repeat 0 -18px;
position:absolute;
left:515px;
cursor:pointer;
top:40px;
}

.next {
width:18px;
height:18px;
background:url(images/down.jpg) no-repeat 0 -18px;
position:absolute;
left:515px;
cursor:pointer;
top:320px;
}

a.next:hover {
width:18px;
height:18px;
background:url(images/down.jpg) no-repeat 0 0px;
position:absolute;
left:515px;
cursor:pointer;
top:320px;
}
