/*

	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{ background:#111; }
	
	/* Thumbnail Tray
	----------------------------*/			
	#thumb-tray{ width:100%; height:108px; position:fixed; z-index:3; bottom:40%; left:0; overflow:hidden; text-align:center; background:#000; }
		
		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:#111; }
				ul#thumb-list li:hover{ cursor:pointer; }
	
		#thumb-prev, #thumb-next{ width:40px; height:108px; position:absolute; z-index:5; bottom:0; }
			#thumb-prev{ left:0; background: url('../images/thumb-back.png') no-repeat center center; }
			#thumb-next{ right:0; background:url('../images/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); }
		
		
				