@charset "UTF-8";
/* CSS Document */
/* root element for scrollable */
html, body {
	font-family: verdana, sans;
    font-size: 9px;
	margin:0px;
	padding:0px;
	background-color: #5a5a5a;
}
a:link {
color: #000000;
}
a:visited {
color: #262626;
}
a:hover {
color: #bababa;
background-color: none;
text-decoration: none;
}
a:active {
color: #262626;
}
..style2 {
font-size: 12px;
color: #999999;
}
.vertical {  
	
	/* required settings */
	position:relative;
	overflow:hidden;	

	/* vertical scrollers have typically larger height than width */	
	height: 405px;	 
	width: 580px;
	border-top:0px solid #ddd;	
}

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

/* single scrollable item */
.items div {
	border-bottom:0px solid #ddd;
	margin:0px 0;
	padding:0px;
	font-size:10px;
	height:200px;
}

/* elements inside single item */
.items img {
	float:left;
	margin-right:20px;
	margin-left:0px;
	height:150px;
	
}

.items h3 {
	margin:0 0 5px 0;
	font-size:14px;
	color:#bababa;
	font-weight:normal;
}

/* the action buttons above the scrollable */
#actions {
	width:700px;
	margin:30px 0 10px 0;
	color:#cccccc;
}

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

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

.disabled {
	visibility:hidden;		
}

.nextPage {
	float:right;
}	
