/* 
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

						POUR COMPOZ'IT
	
	Penser à modifier les styles définis spécifiquement pour le site. dans : /style/interieur/style.asp

	Penser à modifier les paramètre définis spécifiquement pour le site. dans : /fr/template.asp
	* scrollbarWidth [int] - the width of the created scrollbar in pixels (defaults to 10)
	* scrollbarMargin [int] - the margin to leave to the left of the scrollbar in pixels (defaults to 5)
	* wheelSpeed [int] - controls how fast the mouse wheel makes the content scroll in pixels (defaults to 18)
	* showArrows [boolean] - controls whether to display arrows for the user to scroll with (defaults to false)
	* arrowSize [int] - the height of the arrow buttons if showArrows=true (calculated from CSS if not provided)
	* animateTo [boolean] - whether to animate when calling scrollTo and scrollBy (defaults to false)
	* dragMinHeight [int] - the minimum height to allow the drag bar to be (defaults to 0)
	* dragMaxHeight [int] - the maximum height to allow the drag bar to be (defaults to 99999!)
	* animateInterval [int] - The interval in milliseconds to update an animating scrollPane (default 100)
	* animateStep [int] - The amount to divide the remaining scroll distance by when animating (default 3)
	* maintainPosition [boolean] - Whether you want the contents of the scroll pane to maintain it's position when you re-initialise it - so it doesn't scroll as you add more content (default true)
	* scrollbarOnLeft [boolean] - Whether the scrollbar should appear on the left hand side of the panes content (make sure your CSS also reflects this)
	* reinitialiseOnImageLoad [boolean] - Whether the jScrollPane should automatically re-initialise itself when any contained images are loaded (defaults to false)





!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
 */

.jScrollPaneContainer {
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.jScrollPaneTrack {
	position: absolute;
	cursor: pointer;
	right: 0;
	top: 0;
	height: 100%;
	/*background: #aaa;*/
}
.jScrollPaneDrag {
	position: absolute;
	background: #666;
	cursor: pointer;
	overflow: hidden;
}
.jScrollPaneDragTop {
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
}
.jScrollPaneDragBottom {
	position: absolute;
	bottom: 0;
	left: 0;
	overflow: hidden;
}
a.jScrollArrowUp {
	display: block;
	position: absolute;
	z-index: 1;
	top: 0;
	right: 0;
	text-indent: -2000px;
	overflow: hidden;
	/*background-color: #666;
	height: 9px;*/
}
a.jScrollArrowUp:hover {
	/*background-color: #f60;*/
}

a.jScrollArrowDown {
	display: block;
	position: absolute;
	z-index: 1;
	bottom: 0;
	right: 0;
	text-indent: -2000px;
	overflow: hidden;
	/*background-color: #666;
	height: 9px;*/
}
a.jScrollArrowDown:hover {
	/*background-color: #f60;*/
}
a.jScrollActiveArrowButton, a.jScrollActiveArrowButton:hover {
	/*background-color: #f00;*/
}

