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

#slideshow {
	width:675px;
	position:absolute;
	left: 139px;
	top: 320px;
	z-index: 50;
	height: 65px;
}

#slideshow #slidesContainer {
	margin:0 auto;
	width:625px;/* Width of slide viewing window. (Doesn't affect "actual" width of slides...that is found within the javascript) */
	height:65px;
	overflow:auto;
}

#slideshow #slidesContainer .slide {
	margin:0 auto;
	width:575px; /* reduce by 20 pixels of #slidesContainer to avoid horizontal scroll (??) */
	height:65px;
}
.trans {
}
a:hover img.trans {
	/* for IE */
  filter:alpha(opacity=60);
  /* CSS3 standard */
  opacity:0.6;	
}

/** 
 * Slideshow controls style rules.
 */
 
 /*LEFT AND RIGHT ARROWS*/
.control {
	display:block;
	width:25px;/* width of left/right arrows */
	height:65px;
	text-indent:-10000px;
	position:absolute;
	cursor: pointer;
}
#leftControl {
	top:0;
	left:0;
	background-image:url(site_images/arrow_left.png);
}
#rightControl {
	top:0;
	right:0;;
	background-image:url(site_images/arrow_right.png);
}

