.simply-scroll-container { 
	position: relative;
}

/* Clip DIV - automatically generated */
.simply-scroll-clip { 
	position: relative;
	overflow: hidden;
	z-index: 2;
	float:left;
}

/* 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;
	height:auto !important;
}
	
.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/scroll_btns.png);
	width: 22px;
	height: 22px;
	z-index:3;
	cursor: pointer;
}
	
.simply-scroll-btn-left {
	left: 6px;
	bottom: 6px;
	background-position: 0 -44px;
}
.simply-scroll-btn-left.disabled {
	background-position: 0 0 !important;
}
.simply-scroll-btn-left:hover {
	background-position: 0 -88px;
}
	
.simply-scroll-btn-right {
	right: -40px;
	bottom: 6px;
	background-position: 84px -44px;
}
.simply-scroll-btn-right.disabled {
	background-position: 84px 0 !important;
}
.simply-scroll-btn-right:hover {
	background-position: 84px -88px;
}
	
.simply-scroll-btn-up {
	right: -40px;
	top: 6px;
	background-position: 21px 22px;
}
.simply-scroll-btn-up.disabled {
	background-position: 21px 0 !important;
}
.simply-scroll-btn-up:hover {
	background-position: 21px 44px;
}
	
.simply-scroll-btn-down {
	right: 110px;
	bottom: 10px;
	background-position: -21px -22px;
}
.simply-scroll-btn-down.disabled {
	background-position: -21px 0 !important;
}
.simply-scroll-btn-down:hover {
	background-position: -21px -44px;
}

/* Custom class modifications - adds to / overrides above

Vertical scroller example, with custom base class */

/* Container DIV */
/*commented by seenivasan for home page changes 30-01-2017 height: 400px;*/
.vert { 
	width: 400px; /* wider than clip for custom button pos. */
	height: 190px;
	margin-bottom: 1.5em;
}

/* Clip DIV */
/*Commented by seenivasan for home page changes 30-01-2017 height: 482px; */
.vert .simply-scroll-clip {
	width: 400px;
	height: 170px;
}

/* Explicitly set height/width of each list item */
.vert .simply-scroll-list li {
	width: 400px;
	/*height: 70px;*/
}

/* Modified button positions, overriding previous styles */
.vert .simply-scroll-btn-up { 
	right: 10px;
	top: 10px;
}
	/*commented by seenivasan for hompage changes 30-12-2017
    top: 460px;*/
.vert .simply-scroll-btn-down { 
	right: 10px;
	top: 145px;
}