#my_slider_container {
	position:relative;
	width:970px;
	height:450px;
	overflow:hidden;
	padding:0px;
	margin:0px;
}

#my_slider_container img {
	z-index:1;
	position:absolute;
	padding:0px;
	margin:0px;
}

#my_slider_prev {
	position:absolute;
	width:24px;
	height:43px;
	background-image:url(img/arrow-prev.png);
	background-repeat: no-repeat;
	left:10px;
	z-index:10;
	cursor:pointer;
	cursor:hand;
}

#my_slider_next {
	position:absolute;
	width:24px;
	height:43px;
	background-image:url(img/arrow-next.png);
	background-repeat: no-repeat;
	right:10px;
	z-index:10;
	cursor:pointer;
	cursor:hand;
}

#my_slider_caption {
	position:absolute;
	bottom:0px;
	background-color:#000000;
	color:#ffffff;
	height:20px;
	width:970px;
	opacity:0.6;
	filter: alpha(opacity = 60);
	font-size:18px;
	padding:20px;
	z-index:10;
}

#my_slider_shortcuts {
	position:absolute;
	right:20px;
	bottom:20px;
}

.my_slider_circle {
  position:relative;
  opacity:1;
  filter: alpha(opacity = 100);
  background-color:#aaaaaa;
  border-radius: 50%;
  width: 14px;
  height: 14px;
  font-size:8px;
  margin-right:10px;
  z-index:20;
  float:left;
  cursor:pointer;
  cursor:hand;
}
.my_slider_circle:hover {
	background-color:#ffffff;
}
.my_slider_circle_active {
	position:relative;
  opacity:1;
  background-color:#ffffff;
  border-radius: 50%;
  width: 14px;
  height: 14px;
  font-size:8px;
  margin-right:10px;
  z-index:20;
  float:left;
  cursor:pointer;
  cursor:hand;
}