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

/* Bouncing down arrow Indicator */
.arrow-down {
    position:absolute;
    left:50%;
    bottom:0;
    margin-top:-25px;
    margin-left:-25px;
	margin-bottom: 120px;
    height: 60px;
    width: 50px;
	background-image:url(../images/double-down-arrow.png);
	background-position: center;
	background-repeat: no-repeat;
    -webkit-animation:bounce 3s infinite;
    -moz-animation:bounce 3s infinite;
    -o-animation:bounce 3s infinite;
    animation:bounce 3s infinite;
	z-index: 500;
  }
  
  @-webkit-keyframes bounce {
    0%       { bottom:0px; }
    50%      { bottom:15px; }
    100%     {bottom:30;}
  }
  
   @-moz-keyframes bounce {
    0%       { bottom:0px; }
    50%      { bottom:15px; }
    100%     {bottom:30;}
  }
  
   @-o-keyframes bounce {
    0%       { bottom:0px; }
    50%      { bottom:15px; }
    100%     {bottom:30;}
  }
  
   @keyframes bounce {
    0%       { bottom:0px; }
    50%      { bottom:15px; }
    100%     {bottom:30;}
  }