﻿/*--------------------------------------------------
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 15px 0 30px;
		}
		
		.slider-wrap { /* This div isn't entirely necessary but good for getting the side arrows vertically centered */
			margin-top:0px;
			margin-bottom:0px;
			margin-left: 5px;
			margin-right:5px;
			position: relative;
			width: 453px;
			float:left;
			
		}

		/* These 2 lines specify style applied while slider is loading */
		.csw {width: 100%; height: 443px; background: #fff; overflow: hidden;}
		.csw .loading {margin: 200px 0 300px 0; text-align: center}

		.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: 443px; /* Also specified in  .stripViewer .panelContainer .panel  below */
			height: 130px;
			clear: both;
		}
		
		.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: 443px;
			height: 130px;
			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: 100%;
			position: relative;
			width: 443px; /* 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;
		}
		
		.stripNav ul { /* The auto-generated set of links */
			list-style: none;
			position:relative;
			top:147px;
			left:2px;
			float:left;
		}
		
		.stripNav ul li {
			float: left;
			margin: 0px;
			padding:0px; /* If you change this, be sure to adjust the initial value of navWidth in coda-slider.1.1.1.js */
			border-top:1px solid #bfbfbf;
			border-bottom:1px solid #bfbfbf;
		}
		
		.stripNav a { /* The nav links */
			font-size: 12px;
			font-weight: bold;
			font-family:arial;
			text-align: center;
			line-height: 18px;
			height:18px;
			background: #fff;
			color: #004990;
			text-decoration: none;
			display: block;
			border-left:1px solid #fff;
			border-right:1px solid #fff;
			margin:0px;
			padding:0px;
		}
		
		.stripNav li.tab1 a { background: #fff; color: #004990;width:110px;margin:0px;
			padding:0px;}
		.stripNav li.tab2 a { background: #fff; color: #004990;width:178px;margin:0px;
			padding:0px;}
		.stripNav li.tab3 a { background: #fff; color: #004990;width:120px;margin:0px;
			padding:0px;}
		
		.stripNav li a:hover, .stripNav li a:active {
			background: #e4e4e4;
			color:#004990;
			border-left:1px solid #fff;
			border-right:1px solid #fff;
			text-decoration:none;
			margin:0px;
			padding:0px;
		}
		
		.stripNav li a.current {
			background: #e4e4e4;
			color:#004990;
			
			border-left:1px solid #fff;
			border-right:1px solid #fff;
			margin:0px;
			padding:0px;
					}
		
		.stripNavL, .stripNavR { /* The left and right arrows */
			position: absolute;
			top: 0px;
			text-indent: -9000em;
		}
		
		.stripNavL a, .stripNavR a {
			display: block;
			height: 20px;
			width: 18px;
		}
		
		.stripNavL {
			left: 0;
			top:147px;
		}
		
		.stripNavR {
			right: 0;
			top:147px;
			
		}
		
		.stripNavL {
			background: url("../images/arrow-leftroll.gif") no-repeat left;
		}
		
		.stripNavL a:hover {
			background: url("../images/arrow-leftroll.gif") no-repeat -18px;
		}
		
		
		.stripNavR {
			background: url("../images/arrow-rightroll.gif") no-repeat left;
		}
		
		.stripNavR a:hover {
			background: url("../images/arrow-rightroll.gif") no-repeat -18px;
		}
		
