/* 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;
}
.simply-scroll h4 {
	padding:0;
	margin:0;
	color:#ffffff;
	font: bold 0.9em 'Trebuchet MS', Arial, Helvetica; /*Change the em value to scale the button*/
	border-radius:2px;
	moz-border-radius:2px;
	webkit-border-radius:2px;
	background: #2757bb;
	background: -webkit-gradient(linear, left top, left bottom, from(#22448a), to(#2757bb) );
	background: -moz-linear-gradient(-90deg, #22448a, #2757bb);
 filter:  progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr='#22448a', endColorstr='#2757bb');
}
.simply-scroll h4:hover {
	background: #22448a;
	background: -webkit-gradient(linear, left top, left bottom, from(#2757bb), to(#22448a) );
	background: -moz-linear-gradient(-90deg, #2757bb, #22448a);
 filter:  progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr='#2757bb', endColorstr='#22448a');
}
.simply-scroll h4 a {
	border-bottom:dotted 1px #4578af;
	display:inline-block;
	padding:2px 3px;
	color:inherit;
	text-decoration:none;
}
/* 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;
	width:86px;
	height:46px;
	border:solid 1px #a1a1a1;
	cursor:pointer;
}
.simply-scroll-list li a {
	cursor:auto;
}
/* Custom class modifications - adds to / overrides above

.simply-scroll is default base class */

/* Container DIV */
.simply-scroll {
	height: 80px;
}
/* Clip DIV */
.simply-scroll .simply-scroll-clip {
	width: 970px;
	height: 65px;
	margin:3px 0 0 2px;/*
	border:solid 1px #6793b9;
	border-top:none;
	*/
}
/* Explicitly set height/width of each list item */	
.simply-scroll .simply-scroll-list li {
	float: left; /* Horizontal scroll only */
	width: 86px;
	height: 80px;
}
