/*

	Fluid Thumbnail Bar
	
	Author	: Sam Dunn
	Source	: Build Internet (www.buildinternet.com)
	Company : One Mighty Roar (www.onemightyroar.com)
	License : MIT License / GPL License
	
*/

	*{ margin:0; padding:0; border:none; outline:none; }
	body{   }
	
	/* Thumbnail Tray
	----------------------------*/			
	#thumb-tray{ width:500px;; height:108px; z-index:3;  left:0; overflow:hidden; text-align:center; background: #FFF; padding-top:6px; padding-left:5px; margin-left:5px;  }
		
		ul#thumb-list{ display:inline-block; position:relative; left:0; padding:0; list-style:none; }
			ul#thumb-list li{ display:inline; width:150px; height:108px; float:left; overflow:hidden; margin:0; list-style:none;  background: #FFF; padding-left:50px; padding-right:50px; }
				ul#thumb-list li:hover{ cursor:pointer; }
	
		#thumb-prev, #thumb-next{
	width:40px;
	height:108px;
	position:absolute;
	top: 2120px;
}
			#thumb-prev{
	width:41px;
	left:157px;
	background: url('../img/thumb-back.png') no-repeat center center;
}
			#thumb-next{
	right:570px;
	background:url('../img/thumb-forward.png') no-repeat center center;
}
				#thumb-prev:hover, #thumb-next:hover{ cursor:pointer; background-color:rgba(256,256,256, 0.1); }
					#thumb-prev:hover{ border-right:1px solid rgba(256,256,256, 0.2); }
					#thumb-next:hover{ border-left:1px solid rgba(256,256,256, 0.2); }
		
		
				
