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

#slideshow {
	margin: 20px 0 0 0;
	width:700px;
	height:250px;
	background: #f5f5f5;
	position:relative;
}
#slideshow #slidesContainer {
  margin:0 auto;
  width:600px;
  height:250px;
  overflow:auto; /* allow scrollbar */
  position:relative;
}
#slideshow #slidesContainer .slide {
  margin:0 auto;
  width:580px; /* reduce by 20 pixels of #slidesContainer to avoid horizontal scroll */
  height:210px;
  padding: 20px 0 20px 0;
}

/** 
 * Slideshow controls style rules.
 */
.control {
  display:block;
  width:17px;
  height:70px;
  text-indent:-10000px;
  position:absolute;
  cursor: pointer;
}
#leftControl {
  top: 90px;
  left: 10px;
  background:transparent url(../images/slick-left.gif) no-repeat 0 0;
}
#rightControl {
  top: 90px;
  right: 10px;
  background:transparent url(../images/slick-right.gif) no-repeat 0 0;
}

/** 
 * Style rules for Demo page
 */

 
.slide p { font-family: Arial; font-size: 12px; color: #3c3c3c; }
.slide h2 { margin: 0 0 15px 0; padding: 0; font-family: 'HelveticaNeueLight'; color: #005abb; font-size: 25px; font-weight: normal; }
.slide a { text-decoration:none; }
.slide a:hover { text-decoration: underline; }


.slide img { float: left; margin: 0 15px 0 0; border: 0px; }
