/* CSS Document */
#slideshow {
	margin:0 auto;
	width:740px;
	height:346px;
	position:relative;
	outline: 0px;
}
#slideshow #slidesContainer {
  margin:0 auto;
  width:740px;
  height:346px;
  overflow:hidden;   /* hidden: hide scrollbar */
  position:relative;
  outline: 0px;
}

#slideshow #slidesContainer .slide {
  margin:0 auto;
  width:740px; /* reduce by 20 pixels of #slidesContainer to avoid horizontal scroll */
  height:346px;
  outline: 0px;
}

#slideshow2 {
	margin:0 auto;
	width:740px;
	height:383px;
	position:relative;
	left: 50%;
	margin-left: -370px;
	outline: 0px;
}
#slideshow2 #slidesContainer2 {
  margin:0 auto;
  width:740px;
  height:383px;
  overflow:hidden;   /* hidden: hide scrollbar */
  position:relative;
  outline: 0px;
}

#slideshow2 #slidesContainer2 .slide {
  margin:0 auto;
  width:740px; /* reduce by 20 pixels of #slidesContainer to avoid horizontal scroll */
  height:383px;
}

/** 
  * Slideshow controls style rules.
  */
.control {
  display:block;
  width:40px;
  height:346px;
  text-indent:-10000px;
  position:absolute;
  cursor: pointer;
}
#leftControl {
  top:150px;
  left:-55px;
  background:transparent url(../images/left.jpg) no-repeat 0 0;
}
#rightControl {
  top:150px;
  right:-50px;
  background:transparent url(../images/right.jpg) no-repeat 0 0;
}

.control2 {
  display:block;
  width:40px;
  height:346px;
  text-indent:-10000px;
  position:absolute;
  cursor: pointer;
}
#leftControl2 {
  top:150px;
  left:-55px;
  background:transparent url(../images/left.jpg) no-repeat 0 0;
}
#rightControl2 {
  top:150px;
  right:-50px;
  background:transparent url(../images/right.jpg) no-repeat 0 0;
}

/* 
 * Style rules for Demo page
 */
* {
	margin:0;
	padding:0;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
}
a {
  color: #fff;
  font-weight:bold;
  text-decoration:none;
}
a:hover {
  text-decoration:underline;
}

#pageContainer {
  margin:0 auto;
  width:960px;
}
#pageContainer h1 {
  display:block;
  width:960px;
  height:114px;

  text-indent: -10000px;
}
.slide h2, .slide p {
  margin:15px;
}
.slide h2 {
  font:italic 24px Georgia, "Times New Roman", Times, serif;
  color:#ccc;
  letter-spacing:-1px;
}
.slide img {
  float:right;
  margin:0 15px;
}

     /* HOVER STYLES */
      div#pop-up {
        display: none;
        position: absolute;
        width: 280px;
        padding: 10px;
        background: #eeeeee;
        color: #000000;
        border: 1px solid #1a1a1a;
        font-size: 90%;
		z-index:2000;
      }
