/*
rgslideshow 'injects' DIV blocks into the content elements it
is used in. Due to the following statement in some of the other
CSS files, this leads to undesirable additional padding, when
the rgslideshow ondomready is run. 

.csc-textpic DIV {
	padding-bottom: 10px;
}

Remove the padding added through this statement for DIVs added
by the slideshow JS. 
*/
#page .rgslideshowce {
	padding-bottom: 0px;
}
#page .rgslideshowce DIV {
	padding-bottom: 0px;
}


/* general div */
#page DIV.rgslideshow {
	position:relative;
	overflow:hidden;
	background:#fff;
}

/* container divs */
.rgslideshowce, .tx-rgslideshow-pi1 {
  overflow:hidden;
}

/* center the imgs */
.rgslideshow .rgssimg {
  z-index: 1; /* for safari */
  position:absolute;
	left:0;
	right:0;
	margin:0;
	padding:0;
	opacity:0;
  margin:0 auto;	
}

/* no border for imgs */
.rgslideshow img, .rgslideshow a, DIV.csc-textpic .rgslideshow img {
  border:0px;
}

/* nested information */
.rgslideshow .rgsnest {
	display: none;
	visibility: hidden;
}