/************************************************************************
*************************************************************************
@Name :       	Thumba - jQuery Plugin CSS
@Revison :    	1.0
@Date : 		12/02/2012
@Author:     	Mickael SURREL - ALPIXEL Agency - (www.myjqueryplugins.com - www.alpixel.fr) 
@License :		 Open Source - MIT License : http://www.opensource.org/licenses/mit-license.php
 
**************************************************************************
*************************************************************************/
.ThumbaGallery {position:relative;}
.thumba {
	list-style:none;
	padding:0;
	margin:0;
	width:700px;
	display:table;
	background-color:#FFFF;
	position:relative
}

	.thumba li {
		margin: 10px;
		display:inline-table;
		vertical-align:middle;
		z-index:9;
	}

	.thumba li a {display:block}

	.wrapThumba {
		position:absolute;
		top:0;
		left:0;
		z-index:10;
		border-width:2px;
		border-color:#ccc;
		border-style:dashed;
		background-color:transparent;
		display:none;
		cursor:pointer;
		box-shadow:4px 4px 4px #1d1d1d
	}
	
	
	/** Overlay lightbox **/
	.ThumbaLightbox_overlay {
		z-index:9998;
		background-color:#000;
		opacity:0.5;
		-ms-filter: "alpha(opacity=50)"; /* IE 8 */ 
		filter: alpha(opacity=50);
		position:fixed;
		top:0; 
		left:0; 
		width:100%; 
		height:100%; 
		display:none;
	}
	
	/** Main container lightbox **/
	.ThumbaLightbox {
		position:absolute;
		z-index:9999;
		overflow:hidden;
		border:1px solid #000;
	}
	
	/** Legend Img **/
	.ThumbaLightboxLegend {
		background-color:#000;
		color:#fff;
		font-size:12px;
		font-style:italic;
	}