/* ----------------------------------- SCROLL CONTROLS */
.horizontal {
    width: 40px;
    height: 500px;
    top: 50px;
    bottom: 0;
    }
.vertical {
    width: 500px;
    height: 40px;
    left: 50px;
    right: 50px;
    }
.diagonal {
    width: 40px;
    height: 40px;
    }
#scroll-left {
    left: 0;
    }
#scroll-right {
    right: 0;
    }
#scroll-up {
	position: absolute;
		top: 5px;
		left: 75px;
	width: 15px;
	height: 15px;
    background-image: url(../images/up_arrow.gif);
    background-repeat: no-repeat;
    }
#scroll-down {
    position: absolute;
		top: 155px;
		left: 75px;
	width: 15px;
    background-image: url(../images/down_arrow.gif);
    background-repeat: no-repeat;
    }
#scroll-nw {
    top: 0;
    left: 0;
    }
#scroll-ne {
    top: 0;
    right: 0;
    }
#scroll-se {
    bottom: 0;
    right: 0;
    }
#scroll-sw {
    bottom: 0;
    left: 0;
    }