@charset "utf-8";
/* CSS Document */
/* 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 up and down versions 
have been removed in this example */

.simply-scroll-btn {
	position: absolute;
	background-image: url(images/simplyscroll-buttons.gif);
	width: 11px;
	height: 11px;
	z-index:3;
	cursor: pointer;
	padding:0;
	margin:0;
	font-size:0;
}
	
.simply-scroll-btn-left {
	left: 6px;
	bottom: 16px;
	background-position: 0 -11px;
}
.simply-scroll-btn-left.disabled {
	background-position: 0 0 !important;
/*	background:none;*/
}
* html .simply-scroll-btn-left.disabled {
	background:none;
}
.simply-scroll-btn-left:hover {
	background-position: 0 -22px;
}

.simply-scroll-btn-right {
	right: 6px;
	bottom: 16px;
	background-position: 22px -11px;
}
.simply-scroll-btn-right.disabled {
	background-position: 22px 0 !important;
}
* html .simply-scroll-btn-right.disabled {
	background:none;
}
.simply-scroll-btn-right:hover {
	background-position: 22px -22px;
}

/* Custom class modifications - adds to / overrides above

.simply-scroll is default base class */

/* Container DIV */
.simply-scroll { 
	width: 961px;
	height: 43px;
	background-color:#FFF;
}

/* Clip DIV */
.simply-scroll .simply-scroll-clip {
	left: 20px;
	top: 4px;
	width: 901px;
	height: 35px;
/*	padding: 4px 20px 0px 20px;*/
}
.simply-scroll img { 
	padding: 0px 3px;
}
* html .simply-scroll .simply-scroll-clip {
/*	width:961px;
	wid\th:921px;*/
}

/* Explicitly set height/width of each list item */	
.simply-scroll .simply-scroll-list li {
	float: left; /* Horizontal scroll only */
}
