﻿/*--------------------------------------------------
Home Slider
  --------------------------------------------------*/

		noscript p, noscript ol { color: #a00; font-size: 13px; line-height: 1.4em; text-align: left }
		noscript a { color: #a00; text-decoration: underline }
		noscript ol { margin-left: 25px; }
		
		.stripViewer .panelContainer .panel ul {
			text-align: left;
			margin: 0 0px 0 0px;
		}
		
		.slider-wrap { /* This div isn't entirely necessary but good for getting the side arrows vertically centered */
			margin-top:0px;
			margin-bottom:0px;
			position: relative;
			width: 351px;
			height:271px;
			padding-top:0px;
			float:left;
			display:block;
			
		}
		
				/* These 2 lines specify style applied while slider is loading */
		.csw {width: 251px; height: 151px; background: #fff; overflow: hidden;}
		.csw .loading {margin: 100px 0 100px 0; text-align: center}


		/* These 2 lines specify style applied while slider is loading */

		.stripViewer { /* This is the viewing window */
			position: relative;
			overflow: hidden; 
			border: 0px solid #000; /* this is the border. should have the same value for the links */
			margin: auto;
			padding:0px;
			width: 351px; /* Also specified in  .stripViewer .panelContainer .panel  below */
			height: 251px;
			clear: both;
			float:left;
		}
		
		.stripViewer .panelContainer { /* This is the big long container used to house your end-to-end divs. Width is calculated and specified by the JS  */
			position: relative;
			left: 0; top: 0;
			width: 351px;
			height: 251px;
			overflow:hidden;
			list-style-type: none;
			/* -moz-user-select: none; // This breaks CSS validation but stops accidental (and intentional - beware) panel highlighting in Firefox. Some people might find this useful, crazy fools. */
		}
		
		.stripViewer .panelContainer .panel { /* Each panel is arranged end-to-end */
			float:left;
			height: 251px;
			position: relative;
			width: 351px; /* Also specified in  .stripViewer  above */
		}
		
		.stripViewer .panelContainer .panel .wrapper { /* Wrapper to give some padding in the panels, without messing with existing panel width */
			padding: 0px;
		}
		
		.stripNav { /* This is the div to hold your nav (the UL generated at run time) */
			margin: auto;
			width:200px;
		}
		
		.stripNav ul { /* The auto-generated set of links */
			list-style: none;
			position:relative;
			top:271px;
			left:85px;
			float:left;
			width:200px;
		}
		
		.stripNav ul li {
			float: left;
			margin-left: 3px;
			padding:0px; /* If you change this, be sure to adjust the initial value of navWidth in coda-slider.1.1.1.js */
		}
		
		.stripNav a { /* The nav links */
			text-indent: -9000em;

	background:url(../images/page-off.gif) no-repeat;
	width:14px;
	height:14px;
	display:block;
		}
		
		.stripNav li.tab1 a { }
		.stripNav li.tab2 a { }
		.stripNav li.tab3 a {}
		
		
		.stripNav li a:hover, .stripNav li a:active{
	background:url(../images/page-hover.gif) no-repeat;
	width:14px;
	height:14px;
	display:block;
	
}

.stripNav li a.current
{
	text-decoration: none;
	cursor: default;
	background:url(../images/page-on.gif) no-repeat;
	width:14px;
	height:14px;
	display:block;

}
		
		

		
		.stripNavL, .stripNavR { /* The left and right arrows */
			position: absolute;
			top: 0px;
			text-indent: -9000em;
			z-index:300;
		}
		
		.stripNavL a, .stripNavR a {
			display: block;
			width:26px;
  height:119px;
		}
		
		.stripNavL {
			left: 0;
			top:14px;
		}
		
		.stripNavR {
			right: 0;
			top:14px;
			
		}
		
		.stripNavL {
			background:transparent url(../images/arrow-left.gif) no-repeat 0 0;
		}
		
		.stripNavL a:hover {
			background:transparent url(../images/arrow-left-hover.gif) no-repeat 0 0;
		}
		
		
		.stripNavR {
			 background:url(../images/arrow-right.gif) no-repeat 0 0;
		}
		
		.stripNavR a:hover {
			background:url(../images/arrow-right-hover.gif) no-repeat 0 0;
		}
		

