
/** 
 * Slideshow style rules.
 */
 
#cycleslideshow1 {
	margin: 0 auto;
	width: 900px;
	height:200px;
	background-color: transparent;
/*	background-image: url(../images/slider_images/slideshow-bg.png);
	background-repeat: no-repeat;
	background-position: 0 0; */
	position: relative;
}

#cycleslideshow1 div.trans {
  padding: 0px; /* for text i use 15px */
  width: 900px;   /* #cycleslideshow width minus padding here if using text else no padding same as */
  height:200px;	/* #cycleslideshow height minus padding here if using text else no padding same as */
  overflow:hidden; /* dont allow scrollbar */
  text-align:left;
  position: relative; 
  background-color: transparent;
 /* top: 0pt; 
  left: 0px; */
  display: block;
  z-index: 4;
  /* filter:alpha(opacity=0); IE bloomin IE it will make transparent but text and contents dont then show */
  opacity: 1;
 }
 


/* IF TEXTUAL AND IMAGEs use THis */
/* #cycleslideshow1 div.trans img { float: right; margin: 0 0 0 10px; border: none; padding: 0;} */


/** 
 * Slideshow controls style rules.
 */
.control {
  display:block;
  width:39px;
  height:263px;
  text-indent:-10000px;
  position:absolute;
  cursor: pointer;
}
#leftControl {
  top:0;
  left:0;
  background:transparent url(img/control_left.jpg) no-repeat 0 0;
}
#rightControl {
  top:0;
  right:0;
  background:transparent url(img/control_right.jpg) no-repeat 0 0;
}
