/*************************
**  GODOWN ANIMATION   **
*************************/

@-webkit-keyframes scrollanimation {
	 0% {
	 height:5px
	}
	 50% {
	 height:24px
	}
	 100% {
	 height:5px
	}
}
 @-moz-keyframes scrollanimation {
	 0% {
	 height:5px
	}
	 50% {
	 height:24px
	}
	 100% {
	 height:5px
	}
}
 @-ms-keyframes scrollanimation {
	 0% {
	 height:5px
	}
	 50% {
	 height:24px
	}
	 100% {
	 height:5px
	}
}
 @keyframes scrollanimation {
	 0% {
	 height:5px
	}
	 50% {
	 height:24px
	}
	 100% {
	 height:5px
	}
}

/*************************
**  GODOWN ANIMATION   **
*************************/

/* Arrow down animation */
@-webkit-keyframes down {
    0% { 
	    -webkit-transform: none;
	}
	50% { 
	    -webkit-transform: translateY(8px);
	}
	100% { 
	    -webkit-transform: none;
	}
}

@-moz-keyframes down {
    0% { 
	    -moz-transform: none;
	}
	50% { 
	    -moz-transform: translateY(8px);
	}
	100% { 
	    -moz-transform: none;
	}
}