@charset "utf-8";
/* CSS Document */
		
	
		
		p#cross-links { text-align: center }
		
		p#cross-links {  margin-bottom: 0px; padding-bottom: 0px }
		
		a:focus { outline:none }
		
		img { border: 0 }
		
		a:focus { outline:none }
		
		.stripViewer .panelContainer .panel ul {
	text-align: left;
	margin-top: 0;
	margin-right: 0px;
	margin-bottom: 0;
	margin-left: 0px;
	
		}
		
		.slider-wrap { /* This div isn't entirely necessary but good for getting the side arrows vertically centered */
	width: 500px;
	position: relative;
	margin-top: 0px;
	margin-right: 0;
	margin-bottom: 0px;
	margin-left: 0;
	
		}

		/* These 2 lines specify style applied while slider is loading */
		.csw {
	width: 462px;
	height: 462px;
	overflow: hidden;
	
}

		.stripViewer { /* This is the viewing window */
	position: relative;
	overflow: hidden; /* this is the border. should have the same value for the links */
	margin: auto;
	width: 462px; /* Also specified in  .stripViewer .panelContainer .panel  below */
	height: 462px;
	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: 462px;
	list-style-type: none;
	-moz-user-select: none; /* Stops the panels from highlighting/selecting, which I found problematic in Firefox. Also stops the CSS from validating though. Oh well. */
		}
		
		.stripViewer .panelContainer .panel { /* Each panel is arranged end-to-end */
	float:left;
	width: 462px; /* Also specified in  .stripViewer  above */
	height: 462px;
	
		}
		
		.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: 500px;
	height: 0px;
	float: left;
	
		}
		
		.stripNav ul { /* The auto-generated set of links */
	list-style: none;
	float: left;
	width: 500px;
	display:none;
		}
		
		.stripNav ul li {
			float: left;
			margin-right: 2px; /* If you change this, be sure to adjust the initial value of navWidth in slideviewer.js */
		}
		
		.stripNav a { /* The nav links */
	font-size: 11px;
	font-weight: bold;
	text-align: center;
	line-height: 32px;
	color: #f8e8c8;
	text-decoration: none;
	display: block;
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 10px;
	font-family: Arial, Helvetica, sans-serif;
	background-color: #473c35;
		}
		
		.stripNav a:hover {
	background-color: #9a755b;
		}
		
		.stripNav a.current {
			background: #9a755b;;
			color: #f8e8c8;
		}
		
	
		.stripNavL, .stripNavR { /* The left and right arrows */
			position: absolute;
			top: 149px;
			text-indent: -9000em;
		}
		
		.stripNavL a, .stripNavR a {
	display: block;
	height: 41px;
	width: 19px;
		}
		
		.stripNavL {
	left: 0;
		}
		
		.stripNavR {
			right: 0;
		}
		
		.stripNavL {
	background: url("images/productdetails/arrow_left.gif") no-repeat center;
		}
		
		.stripNavR {
			background: url("images/productdetails/arrow_right.gif") no-repeat center; 	

		}