		.slider-wrap { /* This div isn't entirely necessary but good for getting the side arrows vertically centered */
			margin: 10px 0;
			position: relative;
			width:100%;
			height:127px;
			float:left;
			display:inline;
		}

		/* These 2 lines specify style applied while slider is loading */
		.csw {width: 100%; height: 460px; background: #fff; overflow: scroll}
		.csw .loading {margin: 200px 0 300px 0; text-align: center}

		.stripViewer { /* This is the viewing window */
			position: relative;
			float:left;
			display:inline;
			overflow: hidden; 
			width: 786px; /* Also specified in  .stripViewer .panelContainer .panel  below */
			height: 127px;
		}
		
		.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;
			/* -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: 127px;
			position: relative;
			width: 786px; /* Also specified in  .stripViewer  above */
		}
		.stripViewer .panelContainer .panel .product-block{
			float:left;
			display:inline;
			height: 127px;
			width: 242px;
			margin:0 20px 0 0;
			background:url(../img/bg-slider-product.png) top left no-repeat;
			*background:url(../img/bg-slider-product.gif) top left no-repeat;
		}
		.stripViewer .panelContainer .panel .pic{
			width:100px;
			height:100px;
			float:left;
			display:inline;
			margin:2px 0 0 2px;
			overflow:hidden;
		}
		.stripViewer .panelContainer .panel .pic table{
			width:100px;
			text-align:center;
		}
		.stripViewer .panelContainer .panel .pic td{
			height:100px;
			vertical-align:middle;
		}
		.stripViewer .panelContainer .panel .pic img{
			max-width:90px;
			max-height:90px;
			*width: expression(this.width > 89 ? '90px' : true);
		}
		.stripViewer .panelContainer .panel h2{
			float:left;
			display:inline;
			width: 130px;
			font-size:11px;
			line-height:12px;
			color:#333;
			padding:20px 0 5px 0;
		}
		.stripViewer .panelContainer .panel span{
			float:left;
			display:inline;
			width: 130px;
			font-size:11px;
			line-height:12px;
			font-weight:normal;
			color:#666;
		}

		.stripViewer .panelContainer .panel .wrapper { /* Wrapper to give some padding in the panels, without messing with existing panel width */

		}
		
		.stripNavL, .stripNavR { /* The left and right arrows */
			text-indent: -9000em;
			float:left;
			display:inline;
			width:65px;
			height:127px;

		}
		
		.stripNavL a, .stripNavR a {
			display: inline;
			float:left;
			width:65px;
			height:127px;
		}

		.stripNavL a{
			filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod=scale, src='img/arrow-left.png');
			cursor:pointer;
			background: url("../img/arrow-left.png") no-repeat top left;
			*background: url("../img/arrow-left.gif") no-repeat top left;
		}
		
		.stripNavR a{
			filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod=scale, src='img/arrow-right.png');
			cursor:pointer;
			background: url("../img/arrow-right.png") no-repeat top left;
			*background: url("../img/arrow-right.gif") no-repeat top left;
		}