/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

a:link,
a:visited {
	/*color:#FFF;*/
	text-decoration:none;
}
a:hover,
a:focus,
a:active {
	text-decoration:underline;
}

.scroll {
	position:relative;
	font-size:1.3em;
	/*margin-top:20px;*/
	display:inline-block;
	height:100px;
}
.scroll:hover {
	text-decoration:none;
}

.scroll:after {
	content:'';
	width:40px;
	height:40px;
	position:absolute;

	margin:auto;
	top:0px;
	right:0;

	left:0;
	-webkit-animation:3s arrow infinite ease;
	animation:3s arrow infinite ease;
}

.scroll:after {
	/*border-right:2px solid #FFF;
	border-bottom:2px solid #FFF;*/
    
    background-image:url(/images/scroll.png);
    /*background-image:url(/images/arrow-down2.png);*/

    background-repeat:no-repeat;
	/*-ms-transform:rotate(45deg);*/
	/*-webkit-transform:rotate(45deg);*/
	/*transform:rotate(45deg);*/

}
@-webkit-keyframes arrow {
	0%,100% {
		top:30px;
	}
	50% {
		top:50px;
	}
}
@keyframes arrow {
	0%,100% {
		top:30px;
	}
	50% {
		top:50px;
	}
}


.scroll2 {
	position:relative;
	font-size:1.3em;
	/*margin-top:20px;*/
	display:inline-block;
	height:100px;
}
.scroll2:hover {
	text-decoration:none;
}

.scroll2:after {
	content:'';
	width:40px;
	height:40px;
	position:absolute;

	margin:auto;
	top:0px;
	right:0;

	left:0;
	-webkit-animation:3s arrow infinite ease;
	animation:3s arrow infinite ease;
}

.scroll2:after {
	/*border-right:2px solid #FFF;
	border-bottom:2px solid #FFF;*/
    
    /*background-image:url(/images/scroll.png);*/
    background-image:url(/images/arrow-down2.png);

    background-repeat:no-repeat;
	/*-ms-transform:rotate(45deg);*/
	/*-webkit-transform:rotate(45deg);*/
	/*transform:rotate(45deg);*/

}