/*------------------------
	---------------- CONTENT
	------------------------*/
	
	/* You might want to change these options for the main container */
	#slider-container {
	float: left;
	height: 200px;
	width: 938px;
}
/* images container - This is the most important container - Don't change important properties */
	#slider-container {
	list-style: none !important;
	margin: 0 !important;
	overflow: hidden !important;
	position: relative !important;
}
/* each slider item - Nothing to change here */
		#slider-container li {
	display: none;
	float: left;
	margin: 0;
	position: absolute;
	width: 100%;
}
#slider-container img {
	border: none;
}
/* Don't edit this part */
		#slider-container li.current {
	display: block;
	z-index: 2 !important;
}
/* Don't edit this part */
		#slider-container li.next {
	display: block;
	z-index: 1 !important;
}
/* Don't edit this part - prevents inline lists from being hidden */
		#slider-container li ul li {
	display: block !important;
	position: relative !important;
}

