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


/** 
 * Slideshow style rules.
 */
#slideshow {
	margin:0 auto;
	width:100%;
	position:relative;
	background-color: transparent;
	background-repeat: no-repeat;
	background-position: 0 0;
}
#slideshow #slidesContainer {
	width:75%;
	overflow:scroll; /* allow scrollbar */
	position:relative;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	font-size: 12px;
}
#slideshow #slidesContainer .slide {
	width:75%;
	margin:0 auto;
	width:50px; /* reduce by 20 pixels of #slidesContainer to avoid horizontal scroll */
	
}

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

/** 
 * Style rules for Demo page
 */

a {
  color: #fff;

  text-decoration:none;
}
a:hover {
  text-decoration:underline;
}

#pageContainer #content {
	padding: 10px;
	float: left;
	width: 600px;
	font-size: 12px;
}
#content_right {
	float: right;
	width: 300px;
	padding: 10px;
}

.slide img {
	float:right;
	margin:0 15px;
	border: 1px solid #CCC;
}

