@charset "utf-8";
/* CSS Document */

<!--
/** 
 * Slideshow style rules.
 */
#slideshow {
	margin:0 0 0 5px;
	width:510px;
	height:140px;
	position:relative;
}
#slideshow #slidesContainer {
  margin:0 auto;
  width:510px;
  height:140px;
  overflow:auto; /* allow scrollbar */
  position:relative;
}
#slideshow #slidesContainer .slide {
  margin:0 auto;
  width:490px; /* reduce by 20 pixels of #slidesContainer to avoid horizontal scroll */
  height:140px;
}

/** 
 * 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(/images/slider/control_left.jpg) no-repeat 0 0;
}
#rightControl {
  top:0;
  right:0;
  background:transparent url(/images/slider/control_right.jpg) no-repeat 0 0;
}

a img
{
	border-color: #ccc;
}

.slide img {
  float:right;
  margin:0 0 0 15px;
}

#slideIndex
{
	left: 430px;
	bottom: 125px;
	position: absolute;
}
.numbers
{
	width: 16px;
	height: 16px;
	background: #ddd;
	display: inline-block;
	color: #777;
	border: 1px solid #000;
	text-align: center;
	margin: 1px;
	cursor: pointer;
	font: normal 12px Arial;
}
.active
{
	color: #ddd;
	background: #777;
	border: 1px solid #aaa;
}

-->