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

#navegacion {
  z-index: 200;
  padding: 10px;
  position: fixed;
  cursor: pointer;
  right: 0px;
  top: 50%;
  background-color: rgba(0,0,0,0.8);
  -webkit-border-top-left-radius: 3px;
  -webkit-border-bottom-left-radius: 3px;
  -moz-border-radius-topleft: 3px;
  -moz-border-radius-bottomleft: 3px;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
#navegacion .boton_bajar, .boton_subir {
  display: block;
}
.boton_subir {
  -moz-transform: rotate(180deg);
-webkit-transform: rotate(180deg);
-o-transform: rotate(180deg);
-ms-transform: rotate(180deg);
transform: rotate(180deg);
}

#down_btn:hover {
  background-color: rgba(0,0,0,0.6);
}
.bullet {
  margin: 6px;
  height: 6px;
  width: 6px;
  background-color: white;
  -webkit-border-radius: 18px;
-moz-border-radius: 18px;
border-radius: 18px;
opacity: 0.5;
}
.bullet_activo {
	opacity: 1 !important;
}

.boton_bajar_central {
	cursor: pointer;
  position: absolute;
  bottom: 40px;
  left: 50%;
  margin-left: -25px;
  background-image: url('../images/comun/down_btn.png');
  background-position: center center;
  background-repeat: no-repeat;
  width: 50px;
  height: 50px;
}