@charset "utf-8";
/* CSS Document */

		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; }								
		
		.slider-wrap { /* This div isn't entirely necessary but good for getting the side arrows vertically centered */
			position: relative;
			width: 290px;
			background-image:url(../images/home_news2.gif);
			background-repeat:no-repeat;
			padding:37px 10px 0 10px;
			border-left:solid 1px #ff0000;
			border-right:solid 1px #ff0000;	
			z-index:1;					
		}	
		/* These 2 lines specify style applied while slider is loading */
		.csw {width: 100%; height: 200px; background: #fff; overflow: scroll; 			z-index:1;}
		.csw .loading {margin: 200px 0 300px 0; text-align: center;			z-index:1;}

		.stripViewer { /* This is the viewing window */
			position: relative;
			overflow: hidden; 
			/*border: 1px solid #ff0000;  this is the border. should have the same value for the links */
			margin: auto;
			width: 290px; /* Also specified in  .stripViewer .panelContainer .panel  below */
			z-index:1;
			clear: both;
			background: #fff;
		}
		.stripNav {display:none !important}
		.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: 100%;
			list-style-type: none;
			z-index:1;
			/* -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: 145px; /* Also specified in  .stripViewer  above */
						z-index:1;
		}
		
		.stripViewer .panelContainer .panel .wrapper { /* Wrapper to give some padding in the panels, without messing with existing panel width */
			padding:10px 0;
			width:145px;
			z-index:1;
		}
				
		.stripNavL, .stripNavR { /* The left and right arrows */
			position: absolute;
			top: 10px;
			text-indent: -9000em;
						z-index:1;
		}	
		.stripNavL a, .stripNavR a {
			display: block;
			height: 18px;
			width: 18px; 
			padding:0;
			margin:0;
						z-index:1;
		}
		
		.stripNavL {
			left: 0;
						z-index:1;
		}
		
		.stripNavR {
			right: 0;
						z-index:1;
		}
		
		.stripNavL {
			background: url("../images/arrow_left.gif") no-repeat;
						z-index:1;
			left:250px;
		}
		
		.stripNavR {
			background: url("../images/arrow_right.gif") no-repeat;
						z-index:1;
			right:10px;
		}