/*
	AnythingSlider v1.8+ Metallic theme
	By Rob Garrison
*/

/* change the ID & dimensions to match your slider */
body { background-color: #ffcc00; }
h1 { text-align:center; }
div.anythingSlider {
	position: relative;
	top: 10px; 
	right: 185px;
}

#slider {
	width: 395px;
	height: 250px;
	list-style: none;
	/* Prevent FOUC (see FAQ page) and keep things readable if javascript is disabled */
	overflow-y: auto;
	overflow-x: hidden;
}

div.kTemplate { 
	background-image:url(../../../images/bg-kids-template.png); 
	background-repeat:no-repeat; 
	width:797px; 
	margin: 0 auto; }

/*
 =================================
 Default state (no keyboard focus)
 ==================================*/
/* Overall Wrapper */
.anythingSlider-metallic {
	margin: 0 auto;
}

.anythingSlider-metallic .thumbNav a span { 
  visibility: visible; /* span changed to visibility hidden in v1.7.20 */ 
 } 

img { border: 0; }

/************************
  NAVIGATION POSITIONING
 ************************/
 
/* Thumbnail Navigation Links */

.thumbNav {
    list-style:none;
    margin:0;
    padding:0;
    text-align:center;
}
.thumbNav li{
    display:inline;
	width: 72px;
	height: 45px; 
}
.thumbNav a{
    display:inline-block;
    padding:10px;
	width: 71px;
	height: 90px;
}

.anythingControls ul a {
	width: 71px;
	height: 90px;
	margin: 3px;
	padding: 0;
}

.anythingSlider-metallic .anythingControls span {
	display: block;
	visibility: hidden;
}

/* Cross-browser image grayscale reference: http://www.karlhorky.com/2012/06/cross-browser-image-grayscale-with-css.html */
.anythingControls ul.thumbNav li a.cur {  border: medium solid red !important;
			opacity:1.0;
			filter:alpha(opacity=100); /* For IE8 and earlier */;
			filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0\'/></filter></svg>#grayscale");
    		-webkit-filter: grayscale(0%);
}
.anythingControls ul.thumbNav li a { 	opacity:0.5;
		filter:alpha(opacity=50); /* For IE8 and earlier */
		filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale"); /* Firefox 10+, Firefox on Android */
    	filter: gray; /* IE6-9 */
    	-webkit-filter: grayscale(100%); /* Chrome 19+, Safari 6+, Safari 6+ iOS */
}

/* navigationSize window */
.anythingSlider-metallic .anythingControls .anythingNavWindow {
	overflow: hidden;
	float: left;
}

/***********************
  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;
}

/* 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;
}