/*

	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; }
	a {text-decoration:none; color: #FFF; }

	
	/* Thumbnail Tray
	----------------------------*/			
	#thumb-tray{font: 10px Helvetica, Sans-Serif; width:100%; height:60px; position:fixed; z-index:50000; top:0; left:0; overflow:hidden; text-align:center; opacity:0.8; filter:alpha(opacity=80); }
	ul#thumb-list{ display:inline-block; position:relative; left:0; padding:0; list-style:none; }
			ul#thumb-list li{ display:inline; width:100px; height:60px; float:left; overflow:hidden; margin:0; list-style:none;  background:#111; }
				ul#thumb-list li:hover{ cursor:pointer; }
	
		#thumb-prev, #thumb-next{ width:25px; height:50px; position:absolute; z-index:5; bottom:0; }
			#thumb-prev{ left:0; background: url('../img/thumb-back.png') no-repeat center center; }
			#thumb-next{ right:0; 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); }
		
		
				