/* jTour.css*/
.jTourView {overflow: hidden; position: relative; 
					/*width: 300px;*/ height: auto; 
					padding: 0 0 0 0px; margin: 0;}


.jTourContainer {
  	position: relative;  /*pos:rel and left-offset account for border-width.  offset = .jTourContainer border width + .jView border width */
	left: 0px; /* explicitly set because 'auto' won't do for numeric calculations */
	zoom: 1;
	width: 10000px;/* my initial thought is that .jTourContainer should require a width in proportion to the number 
								and width of direct-descendant divisions, but it works perfectly well  with a larger width */
}

/* clears floated .jTourContainer elements */
.jTourContainer:after {content: "."; display: block; height: 0; clear: both; visibility: hidden;}

		/* assigning a class to the first level of 
		divisions would help eliminate css collisions*/
		/* the width of each section div either needs to
		pull it's width as a fraction of the .jTourContainer 
		width or .jTourContainer needs to have its width 
		set as the sum of widths of the section divisions */
		
/*.jTourContainer div {float: left; width: 300px;}
.jTourContainer div div {float: none; width: auto; border: 0;}*/