/*coda slider -- this is for the WORK page */
		.stripViewer .panelContainer .panel ul {
			text-align: left;
			margin: 25px 15px 0 30px;
		}
		/* These 2 lines specify style applied while slider is loading */
		.csw {width: 850px; height: 100%; background: #fff; overflow: none;}
		.csw .loading {margin: 200px 0 300px 0; text-align: center}

		.stripViewer { /* This is the viewing window */
			position: relative;
			overflow: hidden; 
			margin: 25px auto;
			border-top:solid 1px #ccc;
			width: 850px; /* Also specified in  .stripViewer .panelContainer .panel  below */
			height: 100%;
			clear: both;
			background: #fff;
		}
		
		.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: 850px;
			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: 100%;
			position: relative;
			width: 850px; /* Also specified in  .stripViewer  above */
		}
		
		.stripViewer .panelContainer .panel .wrapper { /* Wrapper to give some padding in the panels, without messing with existing panel width */
			padding: 15px;
		}
		
		.stripNav { /* This is the div to hold your nav (the UL generated at run time) */
			margin: 15px auto;
			margin-bottom:25px;
		}
		
		.stripNav ul li {
			float: left;
			margin-right: 2px; /* If you change this, be sure to adjust the initial value of navWidth in coda-slider.1.1.1.js */
		}

		.stripNavL, .stripNavR { /* The left and right arrows */
			display:none;
		}
		.stripNav { /* This is the div to hold your nav (the UL generated at run time) */
			margin: 15px auto;
		}
		
		.stripNav ul { /* The auto-generated set of links */
			list-style: none;
		}
		
		.stripNav ul li {
			float: left;
			margin-right: 2px; /* 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;
			margin-bottom:25px;
			display: block;
			
		}
		.stripNav li.tab1 a { 
			background:url(images/identity.gif) no-repeat;
			background-color:#FFFFFF;
			text-indent:-9999px;
			margin-right:45px;
			width:85px;
			height:22px;
			 }
		.stripNav li.tab2 a { 
			background:url(images/publication.gif) no-repeat;
			background-color:#FFFFFF;
			text-indent:-9999px;
			margin-right:45px;
			width:126px;
			height:20px;
		 }
		.stripNav li.tab3 a {
			background:url(images/websites.gif) no-repeat;
			background-color:#FFFFFF;
			text-indent:-9999px;
			margin-right:45px;
			width:97px;
			height:16px;}
		.stripNav li.tab4 a {
			background:url(images/artwork.gif) no-repeat;
			background-color:#FFFFFF;
			text-indent:-9999px;
			margin-right:45px;
			width:85px;
			height:16px; }
		.stripNav li.tab5 a { 
			background:url(images/photography.gif) no-repeat;
			background-color:#FFFFFF;
			text-indent:-9999px;
			margin-right:45px;
			width:137px;
			height:21px; }
		
		.stripNav li a:hover {
	}
		
		.stripNav li a.current {
		}
/* end coda slider*/