/*--Main Container--*/
.main_view {
  float: left;
  position: relative;
}

/*--Window/Masking Styles--*/
.window {
  height:276px; width: 275px;
  overflow: hidden; /*--Hides anything outside of the set width/height--*/
  position: relative;
}

/*--Paging Styles--*/
.paging {
  position: absolute;
  bottom: 1px; right: 45px;
  width: 178px;
  z-index: 100;
  text-align: center;
  line-height: 30px;
  display: none; /*--Hidden by default, will be later shown with jQuery--*/
}

.paging a {
  padding: 2px;
  text-decoration: none;
  color: #004A75;
}

.paging a.active {
  font-weight: bold;
  background: #897B56;
  border: 1px solid #897B56;
  color: #FFFFFF;
  -moz-border-radius: 3px;
  -khtml-border-radius: 3px;
  -webkit-border-radius: 3px;
}

.paging a:hover {font-weight: bold;}


/*--Paging Styles--*/
.paging_2 {
  position: absolute;
  bottom: 1px; right: 45px;
  width: 178px;
  z-index: 100;
  text-align: center;
  line-height: 30px;
  display: none; /*--Hidden by default, will be later shown with jQuery--*/
}

.paging_2 a {
  padding: 2px;
  text-decoration: none;
  color: #4C3D14;
}

.paging_2 a.active {
  font-weight: bold;
  background: #A8966A;
  border: 1px solid #D6CEB9;
  color: #FFFFFF;
  -moz-border-radius: 3px;
  -khtml-border-radius: 3px;
  -webkit-border-radius: 3px;
}

.paging_2 a:hover {font-weight: bold;}
