/*
	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 {
	width: 996px;
	height: 296px;
	list-style: none;
	/* Prevent FOUC (see FAQ page) and keep things readable if javascript is disabled */
	overflow-y: auto;
	overflow-x: hidden;
}

/*****************
  SET COLORS HERE
 *****************/
/**** Default state (no keyboard focus) ****/
/* slider window - top & bottom borders, default state */
div.anythingSlider .anythingWindow {
/*	border-top: 3px solid #777;
	border-bottom: 3px solid #777; */
}
/* 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 */
div.anythingSlider .start-stop {
	background-color: #040;
	color: #fff;
}
/* start-stop button, playing, default state */
div.anythingSlider .start-stop.playing {
	background-color: #800;
}
/* start-stop button, default hovered text color (when visible) */
div.anythingSlider .start-stop:hover, div.anythingSlider .start-stop.hover {
	color: #ddd;
}

/**** Active State (slider has keyboard focus) ****/
/* slider window - top & bottom borders, active state */
div.anythingSlider.activeSlider .anythingWindow {
	border-bottom: 2px solid #333;
	border-left: 2px solid #333;
	border-right: 2px solid #333;
	margin-left: -2px;
}
/* Navigation buttons, active state */
div.anythingSlider.activeSlider .anythingControls ul a.cur {
	background-color: #126a94;
	color:#126a94;
}
div.anythingSlider.activeSlider .anythingControls ul a {
	background-color: #E6E6E6;
	color:#E6E6E6;
	width:12px;
	height:12px;
	line-height:normal;
	padding:0;
}
div.anythingSlider.activeSlider .anythingControls ul span {
	visibility:hidden;
}
/* start-stop button, stopped, active state */
div.anythingSlider .start-stop {
	background-color: #080;
	color: #fff;
}
/* start-stop button, playing, active state */
div.anythingSlider .start-stop.playing {
	background-color: #d00;
}
/* 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 auto;
	overflow: visible !important; /* needed for Opera and Safari */
	position: relative;
	padding:0;
/*	padding: 0 45px 28px 45px; */
}
/* anythingSlider viewport window */
div.anythingSlider .anythingWindow {
	overflow: hidden;
	position: relative;
	width: 100%;
	height: 100%;
}
/* 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 {
	background: transparent;
	display: block;
	overflow: hidden;
	float: left;
	padding: 0;
	margin: 0;
}
.anythingBase .panel.vertical {
	float: none;
}

/* Navigation Arrows */
div.anythingSlider .arrow {
	top: 50%;
	position: absolute;
	display: block;
}
div.anythingSlider .arrow a {
	display: block;
	height: 140px;
	margin: -70px 0 0 0; /* half height of image */
	width: 45px;
	text-align: center;
	outline: 0;
	background: url(../images/default.png) no-repeat;
}
/* 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: 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); */
/* forward arrow */
div.anythingSlider .forward { right: 0; }
div.anythingSlider .forward a { background-position: right top; }
div.anythingSlider .forward a:hover, div.anythingSlider .forward a.hover { background-position: right -140px; }
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;
	height:10px;
	width:1000px;
	background: url(../images/transparent.png) repeat;
	margin: -70px 0 0 0 ;
	position:absolute;
}
div.anythingSlider .anythingControls ul {
	padding: 0;
	margin:30px 10px 0 10px;
	float: right;
	right:0;
}
div.anythingSlider .anythingControls ul li { display: inline; right:0}
div.anythingSlider .anythingControls ul a {
	font: 11px/18px Georgia, Serif;
	display: inline-block;
	text-decoration: none;
	padding: 0px;
	height: 5px;
	margin: -40px 5px 0px 0px;
	background-position: center -288px ;
	background-repeat: repeat-x;
	text-align: center;
	outline: 0;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px; 
}
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 */

/* Autoplay Start/Stop button */
div.anythingSlider .start-stop {
	background-image: url(../images/default.png);
	background-position: center -288px;
	background-repeat: repeat-x;
	padding: 2px 5px;
	width: 40px;
	text-align: center;
	text-decoration: none;
	float: right;
	z-index: 100;
	outline: 0;
	border-radius: 0 0 5px 5px;
	-moz-border-radius: 0 0 5px 5px;
	-webkit-border-radius: 0 0 5px 5px;
}
/* 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;
}
.sliderText {
	position:absolute;
	text-align:left;
	width:1000px;
	height:20px;
	float:right;
	margin:240px 0 0 0;

	color:#000;
	padding:20px;
	background-color:#fff;
		opacity:0.7;
		  /* IE 8 */
		  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
		
		  /* IE 5-7 */
		  filter: alpha(opacity=70);
		
		  /* Netscape */
		  -moz-opacity: 0.7;
		
		  /* Safari 1.x */
		  -khtml-opacity: 0.7;
}
.caption {
	position:absolute;
	line-height:20px;
	text-align:left;
	width:255px;
	float:right;
	margin:0px 0 0 680px;
	font-weight:normal;
	font-size:14px;
	font-decoration:none;
	height:258px;
	color:#fff;
	z-index:1;
	padding:20px;
	background-color:black;
		opacity:0.8;
		  /* IE 8 */
		  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
		
		  /* IE 5-7 */
		  filter: alpha(opacity=80);
		
		  /* Netscape */
		  -moz-opacity: 0.8;
		
		  /* Safari 1.x */
		  -khtml-opacity: 0.8;
}

/**--.caption {
	position: absolute;
	float: right;
	margin: -400px 0 0 650px;
	color: #fff;
	padding: 0 20px;
	background-color: #fff;
	line-height: 30px;
	height: 400px;
	width: 220px;
		opacity:1.0;
		  /* IE 8 
		  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
		
		  /* IE 5-7 
		  filter: alpha(opacity=100);
		
		  /* Netscape *
		  -moz-opacity: 1.0;
		
		  /* Safari 1.x *
		  -khtml-opacity: 1.0;
}**/
.framer {
	position:absolute;
	width:1000px;
	height:400px;
	    z-index: -1;
	margin:0 0 0 0;
	background-image:url(../images/main-frame.png)
}
.framer1 {
	position:absolute;
	width:1000px;
	height:550px;
	    z-index: -1;
	margin:0 0 0 0;
	background-image:url(../images/main-frame1.png)
}


/*----- RESPONSIVE CODES -----*/
@media only screen and (max-width:960px) {
div.anythingSlider {
	overflow: hidden !important;
}
#slider {
	width: 100%;
	height: 150px;
	list-style: none;
	/* Prevent FOUC (see FAQ page) and keep things readable if javascript is disabled */
	overflow-y: auto;
	overflow-x: hidden;
}

#slider img {
	width: 100%;
	height: auto;
	list-style: none;
	/* Prevent FOUC (see FAQ page) and keep things readable if javascript is disabled */
	overflow-y: auto;
	overflow-x: hidden;
}

div.anythingSlider.activeSlider .anythingWindow {
	border-bottom: 2px solid #fff;
	border-left: 2px solid #fff;
	border-right: 2px solid #fff;
	margin-left: -2px;
	
}
div.anythingSlider .anythingControls { 
	outline: 0;
	display: none;
	height:50px;
	width: 570px;
	background: url(../images/transparent.png) repeat;
	margin: -90px 0 0 -170px;
	position:absolute;
	visibility: hidden;
}
.caption {
	position:absolute;
	line-height:20px;
	text-align:left;
	width:85%;
	float:right;
	margin:110px 0 0 0px;
	font-weight:normal;
	font-size:14px;
	font-decoration:none;
	height:210px;
	color:#fff;
	z-index:1;
	padding:10px;
	background-color:black;
		opacity:0.8;
		  /* IE 8 */
		  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
		
		  /* IE 5-7 */
		  filter: alpha(opacity=80);
		
		  /* Netscape */
		  -moz-opacity: 0.8;
		
		  /* Safari 1.x */
		  -khtml-opacity: 0.8;
}
}