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

* {
  margin:0;
  padding:0;
}

#selected_slideshow_container {
	width: 100%;
	height: auto;
	background-color: #333333;
	margin-top: 20px
}



#pageContainer {
  margin:0 auto;
  width: 980px;
}

#slideshow {
	margin: 0;
	padding: 0;
	width:980px;
    height:360px;
	position:absolute;
	background-color: #333333;
}
#slideshow #slidesContainer {
  margin:0 auto;
  width:980px;
  height:360px;
  overflow:auto; /* allow scrollbar */
  position:relative;

}
#slideshow #slidesContainer .slide {
  margin:0 auto;
  width:960px; /* reduce by 20 pixels of #slidesContainer to avoid horizontal scroll */
  height:360px;
  float:left;
}

/** 
 * Slideshow controls style rules.
 */
.control {
  display:block;
  width:39px;
  height:360px;
  text-indent:-10000px;
  position:absolute;
  cursor: pointer;
  z-index: 2000;

}
#leftControl {
	top:0;
	left:0;
	background-color: transparent;
	background-image: url(img/control_left.png);
	background-repeat: no-repeat;
	background-position: -15000px 0;
}
#rightControl {
  top:0;
  right:0;
  background:transparent url(img/control_right.png) no-repeat 0 0;

}



