.clr {
	clear:both;
	height:0
}

/***************/
/** EXEMPLE 1 **/
/***************/
.jScrollbar { /* main container */
	width:260px;
	height:405px;
	overflow:hidden;
	position:relative;
	background-color:#fff;
	padding:10px;
}
	.jScrollbar_mask { /* text container */
		width:240px;
		position:relative;
		top:0;
		float:left
	}
		.jScrollbar .jScrollbar_mask p { /* paragraphs */
		}
	.jScrollbar_draggable { /* slider container */
		float:left;
		width:5px;
		height:410px;
		overflow:hidden;
		background:#f8f8f8;
		border:1px solid #e3e3e3;
		-webkit-border-radius:5px;
		-moz-border-radius:5px;
		-o-border-radius:5px;
		border-radius:5px;
		
		margin-left:5px;
		position:relative
	}
	.jScrollbar_draggable a.draggable { /** draggable **/
		position:relative;
		background:#82a66f;
		display:block;
		height:40px;
		width:5px;
		margin-left:0px;
		cursor:s-resize;
		-webkit-border-radius:5px;
		-moz-border-radius:5px;
		-o-border-radius:5px;
		border-radius:5px;
	}
	
