/*	AnythingSlider v1.7+ Default (base) theme	By Chris Coyier: http://css-tricks.com	with major improvements by Doug Neiner: http://pixelgraphics.us/	based on work by Remy Sharp: http://jqueryfordesigners.com/*//*****************************  SET DEFAULT DIMENSIONS HERE *****************************//* change the ID to match your slider */#slider1 {	width: 150px; /* Width of each image */	height: 100px; /* Height of each image */	list-style: none;	/* Prevent FOUC (see FAQ page) and keep things readable if javascript is disabled */	overflow-y: auto;	overflow-x: hidden;	text-align:center;}/*****************  SET COLORS HERE *****************//**** Default state (no keyboard focus) ****//* slider window - top & bottom borders, default state */div.anythingSlider .anythingWindow {}/* Navigation buttons, default state */div.anythingSlider .anythingControls ul a.cur,div.anythingSlider .anythingControls ul a {	background: #777;	color: #000;}/***********************  COMMON SLIDER STYLING ***********************//* Overall Wrapper: 45px right & left padding for the arrows, 28px @ bottom for navigation */div.anythingSlider {	display: block;	margin: 0 auto;	overflow: visible !important; /* needed for Opera and Safari */	position: relative;	height:112px !important; /* fixes Firefox bug */	padding:0 28px;	background:url(../img/eyewear/slider-bg.png) no-repeat 11px top;}/* anythingSlider viewport window */div.anythingSlider .anythingWindow {	overflow: hidden;	position: relative;	height: 112px;}/* anythingSlider base (original element) */.anythingBase {	background: transparent;	list-style: none;	position: absolute;	overflow: visible !important;	top: 0;	left: 0;	margin: 0;	padding: 0;}/* all panels inside the slider */.anythingBase .panel {	display: block;	overflow: hidden;	float: left;	width:174px;	margin: 0;	background: #FFF;}.anythingBase .panel img {	height:100px;	padding:6px 0;}/* Navigation Arrows */div.anythingSlider .arrow {	top: 45px;	position: absolute;	display: block;}div.anythingSlider .arrow a {	display: block;	height: 22px;	width: 22px;}/* hide text, target the span so IE7 doesn't text-indent the link */div.anythingSlider .arrow a span {	display: block;	visibility: hidden;}/* back arrow */div.anythingSlider .back {	left: 11px;}div.anythingSlider .back a {	background:url(../img/eyewear/sliderarrow-prev.png) no-repeat left top;}div.anythingSlider .back a:hover,div.anythingSlider .back a.hover {}div.anythingSlider .back.disabled {	display: none;} /* disabled arrows, hide or reduce opacity: opacity: .5; filter: alpha(opacity=50); *//* forward arrow */div.anythingSlider .forward {	right:11px;}div.anythingSlider .forward a {	background:url(../img/eyewear/sliderarrow-next.png) no-repeat left top;}div.anythingSlider .forward a:hover,div.anythingSlider .forward a.hover {}div.anythingSlider .forward.disabled {	display: none;} /* disabled arrows, hide or reduce opacity: opacity: .5; filter: alpha(opacity=50); *//* Navigation Links */div.anythingSlider .anythingControls {	outline: 0;	display: none;}div.anythingSlider .anythingControls ul {	margin: 0;	padding: 0;	float: left;}div.anythingSlider .anythingControls ul li {	display: inline;}div.anythingSlider .anythingControls ul a {	font: 11px/18px Georgia, Serif;	display: inline-block;	text-decoration: none;	padding: 2px 8px;	height: 18px;	margin: 0 5px 0 0;	background-image: url(../images/default.png);	background-position: center -288px;	background-repeat: repeat-x;	text-align: center;	outline: 0;	border-radius: 0 0 5px 5px;	-moz-border-radius: 0 0 5px 5px;	-webkit-border-radius: 0 0 5px 5px;}div.anythingSlider .anythingControls ul a:hover {	background-image: none;}/* Navigation size window */div.anythingSlider .anythingControls .anythingNavWindow {	overflow: hidden;	float: left;}/* slider autoplay right-to-left, reverse order of nav links to look better */div.anythingSlider.rtl .anythingControls ul a {	float: right;} /* reverse order of nav links */div.anythingSlider.rtl .anythingControls ul {	float: left;}    /* move nav link group to left */div.anythingSlider.rtl .anythingWindow {	direction: ltr;	unicode-bidi: bidi-override;}/* div.anythingSlider.rtl .start-stop { float: right; } */ /* move start/stop button - in case you want to switch sides *//* hide cell shading on hover - makes the button appear to come forward */div.anythingSlider .start-stop:hover,div.anythingSlider .start-stop.hover {	background-image: none;}/* probably not necessary, but added just in case */div.anythingSlider,div.anythingSlider .anythingWindow,div.anythingSlider .anythingControls ul a,div.anythingSlider .arrow a,div.anythingSlider .start-stop {	transition-duration: 0;	-o-transition-duration: 0;	-moz-transition-duration: 0;	-webkit-transition-duration: 0;}