@charset "UTF-8";
/* CSS Document */
		
		noscript p, noscript ol, noscript { color: #a00; font-size: 13px; line-height: 1.4em; text-align:center; padding:0; margin:0; width:318px; height:280px; }
		noscript a { color: #a00; text-decoration: underline }
		noscript ol { margin-left: 25px; }
		
		a:focus { outline:none }
		
		.stripViewer .panelContainer .panel ul {
			text-align: left;
			margin: 0;
		}
		
		.slider-wrap { /* This div isn't entirely necessary but good for getting the side arrows vertically centered */
			margin:0;
			position: relative;
			width: 100%;
			text-align:center;
		}

		/* These 2 lines specify style applied while slider is loading */
		.csw {width: 100%; height: 280px; overflow: hidden; text-align: center; position:absolute; top:0;}
		.csw .loading { padding: 100px 0 0 0; text-align: center; height:180px;}

		.stripViewer { /* This is the viewing window */
			position: relative;
			overflow: hidden; 
			margin:0 auto;
			width: 278px; /* Also specified in  .stripViewer .panelContainer .panel  below */
			height: 280px;
			vertical-align:middle;
			text-align:center;
			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: absolute;
			left: 0; top: 0;
			list-style-type: none;
			margin:0 auto;
			/* -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: 278px; /* Also specified in  .stripViewer  above */
		}
		
		.stripViewer .panelContainer .panel .wrapper { /* Wrapper to give some padding in the panels, without messing with existing panel width */
			padding: 10px 0;
		}
		
		.stripNav { /* This is the div to hold your nav (the UL generated at run time) */
			margin:0 auto;
			position:absolute;
			top:250px;
			left:0;
			right:0;
			height:50px;
		}
		
		.stripNav ul { /* The auto-generated set of links */
			list-style: none;
		}
		
		.stripNav ul li {
			float: left;
			margin-right:1px; /* 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 */
			font-size: 10px;
			font-weight: bold;
			text-align: center;
			line-height: 32px;
			background: #c6e3ff;
			color: #fff;
			text-decoration: none;
			display: block;
			padding: 0;
			width:86px;
			height:50px;
		}
		
.stripNav li.tab1 a { background: #000; background:url(../images/tab_photos.gif) no-repeat; }
.stripNav li.tab2 a { background: #000; background:url(../images/tab_videos.gif) no-repeat; }
.stripNav li.tab3 a { background: #000; background:url(../images/tab_webcams.gif) no-repeat; }


.stripNav li a:hover { background-color: #fff; background-position:0 -50px; }
.stripNav li a.current {background-color: #fff; background-position:0 -50px; }

		
		.stripNavL, .stripNavR { /* The left and right arrows */
			position: absolute;
			top:0px;
			text-indent: -9000em;
		}
		
		.stripNavL a, .stripNavR a {
			display: block;
			height: 200px;
			width: 10px;
		}
		
		.stripNavL { background: url("../images/home_previous.gif") no-repeat right; right: 298px; }
		.stripNavL:hover, .stripNavL:active { background-position:left;}
		
		.stripNavR { background: url("../images/home_next.gif") no-repeat left; right: 10px; }
		.stripNavR:hover, .stripNavR:active { background-position:right; }
		
