/*body {
	padding:150px 50px;
	font-family:"Lucida Grande","Lucida Sans Unicode","bitstream vera sans","trebuchet ms",verdana;
}*/

/* get rid of those system borders being generated for A tags */
a:active {
  outline:none;
}

:focus {
  -moz-outline-style:none;
}

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

	/* vertical scrollers have typically larger height than width */	
	height: 340px;	 
	width: 460px;
	margin-top:-10px;
}

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

/* single scrollable item */
.items div {
	height:400px;	
	margin: 0 auto;
}

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

.items h3 {
	margin:0 0 5px 0;
	font-size:16px;
	color:#456;
	font-weight:normal;
}
.sin-list{
	list-style-type:none;
	list-style-position:inherit;
}
/* the action buttons above the scrollable */
#actions {
	width:460px;
	margin:0 auto;
	padding-top:15px;
	margin-bottom:-15px;
	text-align:left;
}

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

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

.disabled {
	visibility:hidden;		
}

.nextPage {
	float:right;
}	

