/*
	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 */
#slider-45{
	width: 270px;
	height:180px;
	list-style: none;
	/* Prevent FOUC (see FAQ page) and keep things readable if javascript is disabled */
	overflow-y: auto;
	overflow-x: hidden;
	margin-top: 0px;
	margin-bottom: 0px;
	margin-right: 0px;
	margin-left: 0px;
	padding: 0px;
	
}
/* Opera width restriction */
.anythingBase { max-width: 32766px; 
height: 180px;}

/*****************
  SET COLORS HERE
 *****************/
/**** Default state (no keyboard focus) ****/
/* slider window - top & bottom borders, default state */
div.anythingSlider .anythingWindow {
	height: 180px;
	
}
/* Navigation buttons, default state */
div.anythingSlider .anythingControls ul a.cur, div.anythingSlider .anythingControls ul a {
	background: #777;
	color: #000;
	
}
/* start-stop button, stopped, default state */


/**** Active State (slider has keyboard focus) ****/
/* slider window - top & bottom borders, active state */
div.anythingSlider.activeSlider .anythingWindow {
	border-color: #000;
}
/* Navigation buttons, active state */
div.anythingSlider.activeSlider .anythingControls ul a.cur, div.anythingSlider.activeSlider .anythingControls ul a {
	background-color: #000;
	color: #FFf;
}
/* start-stop button, stopped, active state */
div.anythingSlider .start-stop {
	background-color: #333;
	color: #fff;
}
/* start-stop button, playing, active state */

/* start-stop button, active slider hovered text color (when visible) */
div.anythingSlider .start-stop:hover, div.anythingSlider .start-stop.hover {
	color: #fff;
}

/***********************
  COMMON SLIDER STYLING
 ***********************/
/* Overall Wrapper: 45px right & left padding for the arrows, 28px @ bottom for navigation */
div.anythingSlider {
	display: block;
	margin: 0;
	overflow: visible !important; /* needed for Opera and Safari */
	position: relative;
	padding: 0 0px 0px 0px;
	height: 220px;
	
}

/* anythingSlider viewport window */
div.anythingSlider .anythingWindow {
	overflow: hidden;
	position: absolute;
	width: 460px;
	height: 220px;
	top: 0px;
	left: 0px;
}
/* anythingSlider base (original element) */
.anythingBase {
	background: transparent;
	list-style: none;
	position: absolute;
	overflow: visible !important;
	top: 0;
	left: 0;
	margin: 0;
	padding: 0;
	height: 180px;
}
/* all panels inside the slider */
.anythingBase .panel {
	display: block;
	overflow: hidden;
	float: left;
	padding: 0;
	margin: 0;
	color: #423907;
	width: 250px;
	height: 180px;
	font: .8em "Trebuchet MS", Arial, Helvetica, sans-serif;
	line-height: 1.6em;
}
.anythingBase .panel.vertical {
	float: none;
	height: 180px;
}

/* Navigation Arrows */

/* hide text, target the span so IE7 doesn't text-indent the link */
div.anythingSlider .arrow a span { display: block; text-indent: -9999px; }
/* back arrow */
div.anythingSlider .back { left: 0; }
div.anythingSlider .back a { background-position: left top; }
div.anythingSlider .back a:hover, div.anythingSlider .back a.hover { background-position: left -140px; }
div.anythingSlider .back.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 {
	padding: 0;
	float: left;
	margin-top: -40px;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 20px;
	position: relative;
	z-index: 25;

}
div.anythingSlider .anythingControls ul li { display: inline; }
div.anythingSlider .anythingControls ul a {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 1em;
	text-decoration: none;
	padding: 2px 6px;
	margin: 0px 10px 0 0;
	background: #0F4;
	text-align: center;
	outline: 0;
	color: #FFF;
		display: none;
}
div.anythingSlider .anythingControls ul a:hover {
	background: #333;
}
/* Navigation size window */