/* hide page until loaded (show with javascript) */
div.fullpage{
	display: none;
}

/* scroll buttons */
div.fullpage div.section{
	position: relative;
}
div.fullpage div.section div.container{
	margin-top: 35px;
	margin-bottom: 35px;
}
div.fullpage div.nextSec, div.fullpage div.prevSec{
  z-index: 99;
	position: absolute;
	text-align: center;
	width: 100%;
	height: 40px;
	cursor: pointer;
	display: none;
}
div.fullpage div.nextSec{
	bottom: -80px;
	background: url('../img/arrow_bottom.png') no-repeat bottom center;
}
div.fullpage div.prevSec{
	top: -80px;
	background: url('../img/arrow_top.png') no-repeat top center;
}
div.fullpage div.nextSecText{
  height: 65px;
  color: #aaa;
}