#slider1 {
	width:670px;
	height:445px;
	list-style: none;
	overflow-y: auto;
	overflow-x: hidden;
}
#slider2 {
	width:620px;
	height:425px;
	list-style: none;
	overflow-y: auto;
	overflow-x: hidden;
}
#slider3 {
	width:670px;
	height:445px;
	list-style: none;
	overflow-y: auto;
	overflow-x: hidden;
}
#slider4 {
	width:740px;
	height:495px;
	list-style: none;
	overflow-y: auto;
	overflow-x: hidden;
}

/******************
  SET STYLING HERE
 ******************
 =================================
 Default state (no keyboard focus)
 ==================================*/
/* Overall Wrapper */
.anythingSlider-default {
	margin: 0 auto;
	/* 45px right & left padding for the arrows, 28px @ bottom for navigation */
	padding: 0 0px 28px 0px;
}
/* Navigation buttons + start/stop button, default state */
.anythingSlider-default .anythingControls a {
	/* top shadow */
	background: #777 url(../images/default.png) center -288px repeat-x;
	color: #000;
	border-radius: 14px;
	-moz-border-radius:14px;
	-webkit-border-radius:14px;
}
/* Make sure navigation text is visible */
.anythingSlider-default .anythingControls a span {
	visibility: hidden;
	display:none;
}
/* Navigation current button, default state */
.anythingSlider-default .anythingControls a.cur {
	background: #888;
	color: #000;
}
/* Navigation buttons, active state */
.anythingSlider-default.activeSlider .anythingControls a {
	/* background image = top shadow */
	background-color: #7C9127;
}

/* Navigation current & hovered button, active state */
.anythingSlider-default.activeSlider .anythingControls a.cur,
.anythingSlider-default.activeSlider .anythingControls a:hover {
	/* background image removed */
	background: #080;
}

/************************
  NAVIGATION POSITIONING
 ************************/
/* Navigation Arrows */
.anythingSlider-default .arrow {
	top:33%;
	position: absolute;
	display: block;
}
.block3 .anythingSlider-default .arrow{
	top:40%;
	position: absolute;
	display: block;
}
.anythingSlider-default .arrow a {
	display: block;
	width:27px;
	height:27px;
	text-align: center;
	outline: 0;
}

/* back arrow */
.anythingSlider-default .back { left: -45px; }
.anythingSlider-default .back a { 
	background: url(../images/str_left.png) no-repeat;
 }
.anythingSlider-default .back a:hover,
.anythingSlider-default .back a.hover { background-position: left top; 
	background: url(../images/str_left.png) no-repeat;
}
/* forward arrow */
.anythingSlider-default .forward {
	right: -45px; 
	
 }
.anythingSlider-default .forward a {
 background-position: right top; 
 background: url(../images/str_right.png) no-repeat;
 }
.anythingSlider-default .forward a:hover,
.anythingSlider-default .forward a.hover { background-position: right top; 
	background: url(../images/str_right.png) no-repeat;
}

/* Navigation Links */
.anythingSlider-default .anythingControls { outline: 0; display: none !important; }
.anythingSlider-default .anythingControls ul { margin: 0; padding: 0;text-align:center;  }
.anythingSlider-default .anythingControls ul li { display: inline; }
.anythingSlider-default .anythingControls ul a {
	font: 11px/18px Georgia, Serif;
	display: inline-block;
	text-decoration: none;
	height: 18px;
	margin: 0 5px 0 0;
	text-align: center;
	outline: 0;
	width:18px;
}
.anythingSlider-default .anythingControls ul a:hover {
	background:#040;
}
/* navigationSize window */
.anythingSlider-default .anythingControls .anythingNavWindow {
	overflow: hidden;
	float: left;
}

/***********************
  IE8 AND OLDER STYLING
 ***********************/

/* Navigation Arrows */
.as-oldie .anythingSlider-default .arrow {
	top: 30%;
}
.as-oldie .anythingSlider-default .arrow a {
	margin: 0;
}

/* margin between nav buttons just looks better */
.as-oldie .anythingSlider-default .anythingControls li {
	margin-left: 3px;
}

/* When using the navigationSize option, the side margins need to be zero
	None of the navigation panels look good in IE7 now =( */
.as-oldie .anythingSlider-default .anythingControls a {
	margin: 0;
}
.as-oldie .anythingSlider-default .anythingNavWindow {
	margin: 0 2px;
}
.as-oldie .anythingSlider-default .anythingNavWindow li {
	padding: 3px 0 0 0;
}

/***********************
  COMMON SLIDER STYLING
 ***********************/
/* Overall Wrapper */
.anythingSlider {
	display: block;
	overflow: visible !important;
	position: relative;
}
/* anythingSlider viewport window */
.anythingSlider .anythingWindow {
	overflow: hidden;
	position: relative;
	width: 100%;
	height: 100%;
}
/* anythingSlider base (original element) */
.anythingSlider .anythingBase {
	background: transparent;
	list-style: none;
	position: absolute;
	overflow: visible !important;
	top: 0;
	left: 0;
	margin: 0;
	padding: 0;
}

/* Navigation arrow text; indent moved to span inside "a", for IE7;
  apparently, a negative text-indent on an "a" link moves the link as well as the text */
.anythingSlider .arrow span {
	display: block;
	visibility: hidden;
}
/* disabled arrows, hide or reduce opacity: opacity: .5; filter: alpha(opacity=50); */
.anythingSlider .arrow.disabled {
	display: none;
}
/* all panels inside the slider; horizontal mode */
.anythingSlider .panel {
	//background: transparent;
	display: block;
	overflow: hidden;
	float: left;
	padding: 0;
	margin: 0;
}
/* vertical mode */
.anythingSlider .vertical .panel {
	float: none;
}
/* fade mode */
.anythingSlider .fade .panel {
	float: none;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
}
/* fade mode active page - visible & on top */
.anythingSlider .fade .activePage {
	z-index: 1;
}

/***********************
  RTL STYLING
 ***********************/
/* slider autoplay right-to-left, reverse order of nav links to look better */
.anythingSlider.rtl .anythingWindow {
	direction: ltr;
	unicode-bidi: bidi-override;
}
.anythingSlider.rtl .anythingControls ul { float: left; } /* move nav link group to left */
.anythingSlider.rtl .anythingControls ul a { float: right; } /* reverse order of nav links */
.anythingSlider.rtl .start-stop { /* float: right; */ } /* move start/stop button - in case you want to switch sides */

/* probably not necessary, but added just in case */
.anythingSlider,
.anythingSlider .anythingWindow,
.anythingSlider .anythingControls ul a,
.anythingSlider .arrow a,
.anythingSlider .start-stop {
	transition-duration: 0s;
	-o-transition-duration: 0s;
	-moz-transition-duration: 0s;
	-webkit-transition-duration: 0s;
}

@media screen and (max-width:768px){
	#slider1,#slider2,#slider3,#slider4 {
	width:100%;
	height:509px;
	list-style: none;
	overflow-y: auto;
	overflow-x: hidden;
}

	
}
@media screen and (max-width:440px){
	#slider1,#slider2,#slider3,#slider4 {
	width:100%;
	height:320px;
	list-style: none;
	overflow-y: auto;
	overflow-x: hidden;
}

	
}