@charset "utf-8";

/* ROTATING PICTURE SLIDER TEMPLATE */

/**************************************************
Global
**************************************************/


* {
  margin: 0;
  padding: 0;
  -webkit-user-select: none; /* disable copy/paste functionality on iPad */
  -webkit-tap-highlight-color: rgba(0,0,0,0); /* Prevent odd "flickering" effect over buttons and links on iPad */
}

body {
  background: url('generic_bg.png') repeat;
  font-family: Tahoma, Helvetica, Arial, sans-serif;
}

img {
  text-decoration: none;
  border: 0;
}

#stageCenter { /* vertical centering */
  width: 100%;
}

/**************************************************
Slider
**************************************************/


#slider {
  width: 800px;
  height: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  padding: 5px;
  background: #fff;
  border: 1px solid #333;
  box-shadow: 0 0 10px 5px rgba(0,0,0,0.5);
}

.no-boxshadow #slider { border: 4px outset #555; }

#slideContainer {
  overflow: hidden;
  width: 800px;
  height: 500px;
  position: relative;
  top: 0;
  left: 0;
}

#slides {
  position: relative;
  top: 0;
  left: -800px;
  width: 2400px;
  height: 100%;
}

#slides > *.sliderImg {
  float: left;
  width: 800px;
  height: 500px;
}

#buttons {
  position: relative;
  z-index: 10;
}

.arrows {
  position: absolute;
  top: 200px;
  height: 100px;
  width: 50px;
  cursor: pointer;
  opacity: 0.6;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)"; /* IE 8 */
  filter: alpha(opacity=60); /* IE 7 */
  transition: opacity 0.2s ease-in;
  -webkit-transition: opacity 0.2s ease-in;
  -moz-transition: opacity 0.2s ease-in;
  -o-transition: opacity 0.2s ease-in;
  -ms-transition: opacity 0.2s ease-in;
}

.arrows.over {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; /* IE 8 */
  filter: alpha(opacity=100); /* IE 7 */
}

#rightArrow {
  background: url('right_arrow.png') no-repeat 0 0;
  right: 0;
  margin-right: -5px;
}

#rightArrow.down { margin-right: -7px; }

#leftArrow {
  background: url('left_arrow.png') no-repeat 0 0;
  left: 0;
  margin-left: -5px;
}

#leftArrow.down { margin-left: -7px; }

#captions {
  width: 295px;
  height: 98px;
  background: url('caption_bg.png') no-repeat 0 0;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 10;
}

#captionTxt {
  color: #129adc;
  font-weight: normal;
  font-size: 22px;
  position: absolute;
  left: 30px;
  top: 38px;
}
