<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*****************************
  SET DEFAULT DIMENSIONS HERE
 *****************************/
/* change the ID &amp; dimensions to match your slider */
#slider2 {
	width: 360px;
	height: 75px;
	list-style: none;
	/* Prevent FOUC (see FAQ page) and keep things readable if javascript is disabled */
	overflow-y: hidden;
	overflow-x: hidden;

    margin:0 0 0 0;
    padding:0 0 0 0;
}

/******************
  SET STYLING HERE
 ******************
 =================================
 Default state (no keyboard focus)
 ==================================*/
/* Overall Wrapper */
.anythingSlider-home-slider2 {
	margin: 0 auto;
	/* 45px right &amp; left padding for the arrows, 28px @ bottom for navigation */
	/*padding: 0 45px 28px 45px;*/
    padding: 0 0 0 0;

}
/* slider window - top &amp; bottom borders, default state */
.anythingSlider-home-slider2 .anythingWindow {
	/*border-top: 3px solid #777;*/
	/*border-bottom: 3px solid #777;*/
}
/* Navigation buttons + start/stop button, default state */
.anythingSlider-home-slider2 .anythingControls a {
	/* top shadow */
    background:#fff;
	color: #000;
}
/* Make sure navigation text is visible */
.anythingSlider-home-slider2 .anythingControls a span {
	visibility: visible;
}
/* Navigation current button, default state */
.anythingSlider-home-slider2 .anythingControls a.cur {
	color: #000;
}

/* start-stop button, stopped, default state */
.anythingSlider-home-slider2 .anythingControls a.start-stop {
	background-color: #040;
	color: #ddd;
}
/* start-stop button, playing, default state */
.anythingSlider-home-slider2 .anythingControls a.start-stop.playing {
	background-color: #800;
}

/* start-stop button, default hovered text color (when visible) */
/* hide nav/start-stop background image shadow on hover - makes the button appear to come forward */
.anythingSlider-home-slider2 .anythingControls a.start-stop:hover,
.anythingSlider-home-slider2 .anythingControls a.start-stop.hover,
.anythingSlider-home-slider2 .anythingControls a.start-stop .anythingControls ul a:hover {
	background-image: none;
	color: #ddd;
}

/*
 =================================
 Active State (has keyboard focus)
 =================================
*/
/* slider window - top &amp; bottom borders, active state */
.anythingSlider-home-slider2.activeSlider .anythingWindow {
	border-color: #7C9127;
}
/* Navigation buttons, active state */
.anythingSlider-home-slider2.activeSlider .anythingControls a {
	/* background image = top shadow */
	background-color: #7C9127;
}
/* Navigation current &amp; hovered button, active state */
.anythingSlider-home-slider2.activeSlider .anythingControls a.cur,
.anythingSlider-home-slider2.activeSlider .anythingControls a:hover {
	/* background image removed */
	background: #7C9127;
}

/* start-stop button, stopped, active state */
.anythingSlider-home-slider2.activeSlider .anythingControls a.start-stop {
	background-color: #080;
	color: #fff;
}
/* start-stop button, playing, active state */
.anythingSlider-home-slider2.activeSlider .anythingControls a.start-stop.playing {
	background-color: #d00;
	color: #fff;
}
/* start-stop button, active slider hovered text color (when visible) */
.anythingSlider-home-slider2.activeSlider .start-stop:hover,
.anythingSlider-home-slider2.activeSlider .start-stop.hover {
	color: #fff;
}

/************************
  NAVIGATION POSITIONING
 ************************/
/* Navigation Arrows */
.anythingSlider-home-slider2 .arrow {
	top: 50%;
	position: absolute;
	display: block;
}

.anythingSlider-home-slider2 .arrow a {
	display: block;
	width: 45px;
	height: 140px;
	margin: -70px 0 0 0; /* half height of image */
	text-align: center;
	outline: 0;
	background: url(../images/default.png) no-repeat;
}

/* back arrow */
.anythingSlider-home-slider2 .back { left: 0; }
.anythingSlider-home-slider2 .back a { background-position: left top; }
.anythingSlider-home-slider2 .back a:hover,
.anythingSlider-home-slider2 .back a.hover { background-position: left -140px; }
/* forward arrow */
.anythingSlider-home-slider2 .forward { right: 0; }
.anythingSlider-home-slider2 .forward a { background-position: right top; }
.anythingSlider-home-slider2 .forward a:hover,
.anythingSlider-home-slider2 .forward a.hover { background-position: right -140px; }

/* Navigation Links */
.anythingSlider-home-slider2 .anythingControls { 
    outline: 0; 
    display: none; 

	position: absolute;
    bottom:6px;
    right:0px;
    z-index: 100;

    padding:0 0 0 0;
    margin:0 0 0 0;


}
.anythingSlider-home-slider2 .anythingControls ul { 
    float: right; 

    margin: 0; 
    padding: 0; 

    list-style-type:none;

}
.anythingSlider-home-slider2 .anythingControls ul li { 
    float:left;

	margin: 0 0 0 0;
    padding:3px;

}
.anythingSlider-home-slider2 .anythingControls ul a {
	display: block;

    color: #777;
	font: 1em;
	text-decoration: none;

	height: 61px;
    width:61px;

	text-align: center;
	outline: 0;

    position: relative;
	padding: 0 0 0 0;
	margin: 0 0 0 0;

	left: 0px;
	top: 0px;

    background:#fff;
}

.anythingSlider-home-slider2 .anythingControls ul a:hover {
    background:#eee;
    color: #3b86b1;
    background-position: left top;
}

.anythingSlider-home-slider2 .anythingControls ul a:hover span {
	background-position: right top;
}

.anythingSlider-home-slider2 .anythingControls ul a.cur,
.anythingSlider-home-slider2 .anythingControls ul a.cur:hover {
	color: #3b86b1;
	background-position: left top;

    top:-8px;
}

.anythingSlider-home-slider2 .anythingControls ul a.cur span,
.anythingSlider-home-slider2 .anythingControls ul a.cur:hover span {
	background-position: right top;
}

.anythingSlider-home-slider2 .anythingControls ul a span {
	display: block;
	height: 55px;
    width:55px;

	position: relative;

	padding: 0 0 0 0;
	margin: 0 0 0 0;

	left: 3px;
	top: 3px;

}

.anythingSlider-home-slider2 .anythingControls ul a span img {
  width:55px;
  height:55px;
}

/* navigationSize window */
.anythingSlider-home-slider2 .anythingControls .anythingNavWindow {
	overflow: hidden;
	float: left;
}

/* Autoplay Start/Stop button */
.anythingSlider-home-slider2 .anythingControls .start-stop {
	padding: 2px 5px;
	width: 40px;
	text-align: center;
	text-decoration: none;
	float: right;
	z-index: 100;
	outline: 0;
}

/***********************
  IE8 AND OLDER STYLING
 ***********************/

/* Navigation Arrows */
.as-oldie .anythingSlider-home-slider2 .arrow {
    margin:0;
	top: 30%;
}
.as-oldie .anythingSlider-home-slider2 .arrow a {
	margin: 0;
}

.as-oldie .anythingSlider-home-slider2 .anythingControls {
	margin: 0 0 0 30px;
}

/* margin between nav buttons just looks better */
.as-oldie .anythingSlider-home-slider2 .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-home-slider2 .anythingControls a {
	margin: 0;
}
.as-oldie .anythingSlider-home-slider2 .anythingNavWindow {
	margin: 0 2px;
}
.as-oldie .anythingSlider-home-slider2 .anythingNavWindow li {
	padding: 3px 0 0 0;
}

/***********************
  COMMON SLIDER STYLING
 ***********************/
/* Overall Wrapper */
.anythingSlider-home-slider2 {
	display: block;
	overflow: visible !important;
	position: relative;
}
/* anythingSlider viewport window */
.anythingSlider-home-slider2 .anythingWindow {
	overflow: hidden;
	position: relative;
	width: 100%;
	height: 100%;
}
/* anythingSlider base (original element) */
.anythingSlider-home-slider2 .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-home-slider2 .arrow span {
	display: block;
	visibility: hidden;
}
/* disabled arrows, hide or reduce opacity: opacity: .5; filter: alpha(opacity=50); */
.anythingSlider-home-slider2 .arrow.disabled {
	display: none;
}
/* all panels inside the slider; horizontal mode */
.anythingSlider-home-slider2 .panel {
	background: transparent;
	display: block;
	overflow: hidden;
	float: left;
	padding: 0;
	margin: 0;
}
/* vertical mode */
.anythingSlider-home-slider2 .vertical .panel {
	float: none;
}
/* fade mode */
.anythingSlider-home-slider2 .fade .panel {
	float: none;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
}
/* fade mode active page - visible &amp; on top */
.anythingSlider-home-slider2 .fade .activePage {
	z-index: 1;
}

/***********************
  RTL STYLING
 ***********************/
/* slider autoplay right-to-left, reverse order of nav links to look better */
.anythingSlider-home-slider2.rtl .anythingWindow {
	direction: ltr;
	unicode-bidi: bidi-override;
}
.anythingSlider-home-slider2.rtl .anythingControls ul { float: left; } /* move nav link group to left */
.anythingSlider-home-slider2.rtl .anythingControls ul a { float: right; } /* reverse order of nav links */
.anythingSlider-home-slider2.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-home-slider2,
.anythingSlider-home-slider2 .anythingWindow,
.anythingSlider-home-slider2 .anythingControls ul a,
.anythingSlider-home-slider2 .arrow a,
.anythingSlider-home-slider2 .start-stop {
	transition-duration: 0s;
	-o-transition-duration: 0s;
	-moz-transition-duration: 0s;
	-webkit-transition-duration: 0s;
}
</pre></body></html>