@charset "UTF-8";
/* CSS Document */
		
		* { margin: 0; padding: 0 }
		/* I've used a hard CSS reset above, but you should consider a more sophisticated reset, such as this one: http://meyerweb.com/eric/thoughts/2007/05/01/reset-reloaded/ */
		
		noscript p, noscript ol { color: #a00; font-size: 13px; line-height: 1.4em; text-align: left }
		noscript a { color: #a00; text-decoration: underline }
		noscript ol { margin-left: 25px; }
		
		a:focus { outline:none }
		#flashHead { border: 0 }
		
		h3 { border-bottom: 1px solid silver; margin-bottom: 5px; padding-bottom: 3px; text-align: left }
		
	
		img {
			border-top-style: none;
			border-right-style: none;
			border-bottom-style: none;
			border-left-style: none;	
		}
		
		.stripViewer .panelContainer .panel ul {
			text-align: left;
			margin: 0 15px 0 30px;
		}
		
		.slider-wrap { /* This div isn't entirely necessary but good for getting the side arrows vertically centered */
			position: relative;
			width: 100%;	
		}

		/* These 2 lines specify style applied while slider is loading */
		.csw {width: 100%; height: 268px; overflow: hidden}
		.csw .loading {margin: 200px 0 300px 0; text-align: center}

		.stripViewer { /* This is the viewing window */
			position: absolute;
			right:0px;
			top:0px;
			overflow: hidden; 
			margin: auto;
			width: 720px; /* Also specified in  .stripViewer .panelContainer .panel  below */
			height: 278px;
			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: 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: 278px;;
			position: relative;
			left:50px;
			width: 725px; /* 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;
		}
		
		.stripNav { /* This is the div to hold your nav (the UL generated at run time) */
			margin: auto;
			
		}
		
		.stripNav ul { /* The auto-generated set of links */
			list-style: none;
			position:absolute;
			left:340px;
			top:255px;
			z-index:10;
			height:20px;
			width:200px;
		}
		
		.stripNav ul li {
			float: left;
			margin-right: 0px;/* 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: 0;
			width:10px;
			height:20px;
			text-decoration: none;
			display: block;
			padding: 0 5px;
		}
		
		.stripNav li a { 
			background-image:url(../assets/notdot.png);
			background-repeat:no-repeat;
			background-position:center;
		 }
		
		
		.stripNav li a:hover {
			background-image:url(../assets/thisdot.png);
			background-repeat:no-repeat;
			background-position:center;
		}
		
		.stripNav li a.current {
			background-image:url(../assets/thisdot.png);
			background-repeat:no-repeat;
			background-position:center;
		}
		
		.stripNavL, .stripNavR { /* The left and right arrows */
			float:left;
			width:25px;
			text-indent: -9000em;			
		}
		
		.stripNavL a, .stripNavR a {
			display: block;
			height: 20px;
			width: 40px;
			display:none;
		}
		
		.floatLeft {
			float:left;
			margin-top:250px;
			position:relative;
			
		}
		
		.stripNavL {
			background: url("../assets/leftArr.png") no-repeat center;
		}
		
		.stripNavL:hover {
			background: url("../assets/leftArrOver.png") no-repeat center;
		}
		
		.stripNavR {
			background: url("../assets/rightArr.png") no-repeat center;
		}
		
		.stripNavR:hover {
			background: url("../assets/rightArrOver.png") no-repeat center;
		}
		
		.navHold {
			position:absolute;
			right:0;
		}
	
		.projDiv {
			float:left;
			margin:5px;
			width:200px;
			height:105px;
			background-color:#CCCCCC;
			overflow:hidden;
			position:relative;
			-moz-opacity: 0.8;
			opacity:.80;
			filter: alpha(opacity=80);
			border: 3px solid #fcfcfc;
		}
		
		.projDiv:hover {
			-moz-opacity: 0.95;
			opacity:.95;
			filter: alpha(opacity=95);
		}
		
		.title {
			position:absolute;
			bottom:0px;
			left:0px;
			width:200px;
			height:18px;
			-moz-opacity: 0.8;
			opacity:.80;
			filter: alpha(opacity=80);
			color:#333333;
			font-size:0.75em;
			text-align:center;
			background-color:#fcfcfc;
			z-index:100;
			padding-top:5px;
		}
		
		.projLink {
			display:block;
		}
		
		/**.projDiv img {
			position:relative;
			top:-20%;
		}	**/
		
		#cross {
			float:left;
			padding:10px;
		}
		
		.dots{
		background:transparent none repeat scroll 0 0;
		color:#dbdbdb;
		font-size:0.8em;
		left:7px;
		position:relative;
		top:2px;
		}