﻿/** * Slideshow style rules*/
#slideshow {
	margin:8px auto;
	width:520px; /*670px  orig-->640*/
	height:285px;
	background:transparent url('../images/photoslider/bg_slideshow2.jpg') no-repeat 0 0;
	position:relative;
	border: 2px gray solid;
	}
	
#slideshow #slidesContainer {
  margin:0 auto;
  width:440px;/*was 560 and then 540*/
  height:280px;
  overflow:auto;  /* allow scrollbar */
  position:relative;
 /*   border: 2px solid blue;added myself for testing*/
  padding-right: 15px;
}
#slideshow #slidesContainer .slide {
  margin:0 auto;
  width:420px; /* reduce by 20 pixels of #slidesContainer to avoid horizontal scroll  */
  height:280px;
 /*  border: 2px solid green; added myself for testing*/

}

/** * Slideshow controls style rules. */
.control {
  display:block;
  width:39px;
  height:280px;
  text-indent:-10000px;
  position:absolute;
  cursor: pointer;
}

#leftControl {
  top:0;
  left:0;
  background:transparent url('../images/photoslider/control_left.gif') no-repeat 0 0;
}
#rightControl {
  top:0;
  right:0;
  background:transparent url('../images/photoslider/control_right.gif') no-repeat 0 0;
}

.slide h2 {
  font:130% Georgia, "Times New Roman", Times, serif;
  font-weight: bold;
  color:#082173;
  letter-spacing:-1px;
  background:transparent url('../images/photoslider/h2slider.gif') no-repeat scroll left 90%;
}

.slide p {
	font-size:93%;
	margin-left: 8px;
	/*border: 1px solid aqua; added for testing*/
}

.slide img {
  float:right;
  /*margin: 0 15px;
  border: 3px solid #e4e4e4; */
} 
