/* Existing styles */
#season .section {
	float:left;
	width: 360px;
	padding-top: 8px;
}

#season h3 {
	font-weight:normal;
	font-size: .8em;
	color: #fff;
	float:left;
	width: 70px;
}

#season ul {
	margin-left: 70px;
	padding-bottom: 15px;
}

.section li {
	font-family: Arial, Helvetica, sans-serif;
	font-size: .75em;
	color: #fff;
	padding-bottom: 10px !important;
}

/* Container DIV - automatically generated */
.simply-scroll-container { 
	position: relative;
}

/* Clip DIV - automatically generated */
.simply-scroll-clip { 
	position: relative;
	overflow: hidden;
	z-index: 2;
}

/* UL/OL/DIV - the element that simplyScroll is inited on
Class name automatically added to element */
.simply-scroll-list { 
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	overflow: hidden;
	margin: 0;
	padding: 0;
	list-style: none;
}
	
.simply-scroll-list li {
	padding: 0;
	margin: 0;
	list-style: none;
}
	
.simply-scroll-list li img {
	border: none;
	/*display: block; */
}


/* Master button styles - note that left and right 
versions are included although they are not used in this example */

.simply-scroll-btn {
	position: absolute;
	background-image: url("../images/base/buttons.png");
	width: 32px;
	height: 32px;
	z-index:3;
	cursor: pointer;
}
	
.simply-scroll-btn-left {
	left: 6px;
	bottom: 6px;
	background-position: 0 -32px;
}
.simply-scroll-btn-left.disabled {
	background-position: 0 0 !important;
}
.simply-scroll-btn-left:hover {
	background-position: 0 -64px;
}
	
.simply-scroll-btn-right {
	right: 6px;
	bottom: 6px;
	background-position: 64px -32px;
}
.simply-scroll-btn-right.disabled {
	background-position: 84px 0 !important;
}
.simply-scroll-btn-right:hover {
	background-position: 64px -64px;
}
	
.simply-scroll-btn-up {
	right: 6px;
	top: 6px;
	background-position: -96px -32px;
}
.simply-scroll-btn-up.disabled {
	background-position: -96px 0 !important;
}
.simply-scroll-btn-up:hover {
	background-position: -96px -64px;
}
	
.simply-scroll-btn-down {
	right: 6px;
	bottom: 6px;
	background-position: -32px -32px;
}
.simply-scroll-btn-down.disabled {
	background-position: -32px 0 !important;
}
.simply-scroll-btn-down:hover {
	background-position: -32px -64px;
}

/* Custom class modifications - adds to / overrides above

Vertical scroller example, with custom base class */

/* Container DIV */

.custom { /* Applied to container DIV */
	width: 410px;
	height: 230px;
}

.custom .simply-scroll-clip { /* Applied to clip DIV */
	width: 410px;
	height: 230px;
}

/* Modified button positions, overriding previous styles */
.custom .simply-scroll-btn-up { 
	right: 0;
	top: 15;
}

.custom .simply-scroll-btn-down { 
	right: 0;
	top: 52px;
}



