/**
 * Demo page styles, all list scroll effects styles are in sctroll.css
 */

article {
	display: inline-block;
	margin: 20px;
}



small {
	/*opacity: 0.6;*/
	/*font-style: italic;*/
	font-size: 14px;
	margin-left: 5px;
}

/**
 * List used for the demo page
 */
.ul123 {
	position: relative;
	width: 230px;
	height: 480px;
	margin: 0;
	padding: 0;
	overflow-x: hidden;
	overflow-y: scroll;
	list-style: none;

	-webkit-perspective: 400px;
	   -moz-perspective: 400px;
	    -ms-perspective: 400px;
	     -o-perspective: 400px;
	        perspective: 400px;
}
	.ul123 li {
		position: relative;
		padding: 16px;
		background: #eee;
		color: #252525;
		font-size: 18px;
		z-index: 2;

		-webkit-transform: translateZ(0px);
		   -moz-transform: translateZ(0px);
		    -ms-transform: translateZ(0px);
		     -o-transform: translateZ(0px);
		        transform: translateZ(0px);
	}
	.ul123 li:nth-child(odd) {
		background: #fff;
	}

