/*--Main Container--*/
.slider_main {
  float: left;
  position: relative;
}
/*--Window/Masking Styles--*/
.slider_window {
  height: 300px;
  width: 720px;
  overflow: hidden;
  position: relative;
}
.slider_reel {
  position: absolute;
  top: 0; left: 0;
}
.slider_reel img {
  float: left;
  height:300px; 
  width: 720px;
}

/*--Paging Styles--*/
.slider_pager {
  position: absolute;
  bottom: 10px; right: -7px;
  width: 250px; height:47px;
  z-index: 100; /*--Assures the paging stays on the top layer--*/
  text-align: center;
  line-height: 40px;
  !background: url(paging_bg2.png) no-repeat;
  display: none; /*--Hidden by default, will be later shown with jQuery--*/
}
.slider_pager a {
  padding: 5px;
  text-decoration: none;
  color: #fff;
}
.slider_pager a.active {
  font-weight: bold;
  background: #999999;
  border: 1px solid #999999;
  -moz-border-radius: 3px;
  -khtml-border-radius: 3px;
  -webkit-border-radius: 3px;
}
.slider_pager a:hover { font-weight: bold; }


