@charset "utf-8";
/* CSS Document */

.slider {
	width: 280px; /* important to be same as image width */
	height: 380px; /* important to be same as image height */
	position: relative; /* important */
	overflow: hidden;
}

.sliderContent {
	width: 280px; /* important to be same as image width or wider */
	position: absolute; /* important */
	top: 0; /* important */
	margin-left: 0;
}

.sliderImage {
   float: left; /* important */
   position: relative; /* important */
   display: none; /* important */
}

.clear {
	clear: both;
} 
