
#wrapper {
	position: relative;
	width: 500px;
	height: 110px;
	margin: 10px auto 0 auto;
	padding: 0 50px 0 50px;
	}

#scroller {
	width: 498px;
	height: 100px;
	overflow: hidden;
	border: 0px solid #CCD8E3;
	/*background: url('../img/loading.gif') no-repeat 50% 50%;*/
	}

#inner {
	/*width: 4300px;*/
	
	height: 100px;
	text-align: left;
	}

.scroll {
	position: absolute;
	background-color: #E9F1F4;
	border: 1px solid #CCD8E3;

	background-repeat: no-repeat;
	background-position: 50% 50%;
	}

/* ------------------------------------------------------ SCROLL CONTROLS */

.horizontal {
	width: 40px;
	height: 50px;
	top: 10px;
	bottom: 0;
	}

.vertical {
	width: 498px;
	height: 40px;
	left: 50px;
	right: 50px;
	}

.diagonal {
	width: 40px;
	height: 40px;
	}

#scroll-left {
	left: 0;
	background-image: url("../img/left.gif");
	}

#scroll-right {
	right: 0;
	background-image: url("../img/right.gif");
	}

#scroll-up {
	top: 0;
	background-image: url("../img/up.gif");
	}

#scroll-down {
	bottom: 0;
	background-image: url("../img/down.gif");
	}

#scroll-nw {
	top: 0;
	left: 0;
	background-image: url("../img/nw.gif");
	}

#scroll-ne {
	top: 0;
	right: 0;
	background-image: url("../img/ne.gif");
	}

#scroll-se {
	bottom: 0;
	right: 0;
	background-image: url("../img/se.gif");
	}

#scroll-sw {
	bottom: 0;
	left: 0;
	background-image: url("../img/sw.gif");
	}


/* ------------------------------------------------------ ACTIVE & FASTER SCROLL CONTROLS (hovered & clicked) */

#scroll-left:hover {
	background-image: url("../img/left-active.gif");
	}

#scroll-left:active {
	background-image: url("../img/left-faster.gif");
	}


#scroll-right:hover {
	background-image: url("../img/right-active.gif");
	}

#scroll-right:active {
	background-image: url("../img/right-faster.gif");
	}


#scroll-up:hover {
	background-image: url("../img/up-active.gif");
	}

#scroll-up:active {
	background-image: url("../img/up-faster.gif");
	}


#scroll-down:hover {
	background-image: url("../img/down-active.gif");
	}

#scroll-down:active {
	background-image: url("../img/down-faster.gif");
	}


#scroll-nw:hover {
	background-image: url("../img/nw-active.gif");
	}

#scroll-nw:active {
	background-image: url("../img/nw-faster.gif");
	}


#scroll-ne:hover {
	background-image: url("../img/ne-active.gif");
	}

#scroll-ne:active {
	background-image: url("../img/ne-faster.gif");
	}


#scroll-se:hover {
	background-image: url("../img/se-active.gif");
	}

#scroll-se:active {
	background-image: url("../img/se-faster.gif");
	}


#scroll-sw:hover {
	background-image: url("../img/sw-active.gif");
	}

#scroll-sw:active {
	background-image: url("../img/sw-faster.gif");
	}