
/**************** Style ****************/

/* Slider */

.slider-module {
	position: relative;
	width: 100%;
	height: 100%;
	margin: 0;
}

.slider-module .slider-previous {
	position: absolute;
	top: 0;
	left: 0;
	float: left;
	width: 32px;
	height: 64px;
	cursor: pointer;
	background: url(arrows_blue.png) no-repeat 0 0;
}

.slider-module .slider-previous:hover {
	background-position: 0 -64px;
}

.slider-module .slider-next {
	position: absolute;
	top: 0;
	right: 0;
	float: left;
	width: 32px;
	height: 64px;
	cursor: pointer;
	background: url(arrows_blue.png) no-repeat -32px 0;
}

.slider-module .slider-next:hover {
	background-position: -32px -64px;
}

.slider-module .slider-window {
	position: relative;
	clear: both;
	width: 100%;
	overflow: hidden;
}

.slider-module .slider-window div.content {
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
}

.slider-module .slider-dots {
	position: relative;
	text-align: center;
	width: 100%;
	height: 16px;
}

.slider-module .slider-dots div {
	display: inline-block;
	height: 16px;
	width: 16px;
	background: url(dots_blue_16.png) no-repeat 0 0;
}

.slider-module .slider-dots div.active {
	background-position: 0 -16px;
}
