@charset "iso-8859-1";
/* CSS Document */

#triggers {
}
/* styling for elements inside overlay */
.details {
	background:url(http://www.mobel6000.com/imagenes/menu-vertical-background.png) repeat scroll left top transparent;
	position:absolute;
	top:0px;
	left:0px;
	font-size:12px;
	font-family:Arial, Verdana, Geneva, sans-serif;
	line-height:20px;
	color:#000;
	width:200px;
	height:470px;
	padding:10px 10px 10px 10px;
}
 
.details h3 {
	color:#000;
	font-size:15px;
	padding-top:10px;
	padding-bottom:20px;
	margin:0 0 -10px 0;
	font-weight:bold;
}
/* the overlayed element */
.simple_overlay {
	
	/* must be initially hidden */
	display:none;
	
	
	/* place overlay on top of other elements */
	z-index:10000;
	/* styling */
	background-color:#333;
	
	width:auto;	
	min-height:200px;
	border:1px solid #666;
	
	/* CSS3 styling for latest browsers */
	-moz-box-shadow:0 0 90px 5px #000;
	-webkit-box-shadow: 0 0 90px #000;	
}

/* close button positioned on upper right corner */
.simple_overlay .close {
	background-image:url(http://www.mobel6000.com/imagenes/close.png);
	position:absolute;
	background-repeat:no-repeat;
	right:-15px;
	top:-15px;
	cursor:pointer;
	height:35px;
	width:35px;
}