@charset "UTF-8";
/* CSS Document */

#gallery {
	position:fixed;
	top:0;
	bottom:0;
	left:0;
	right:0;
	width:100%;
	height:100%;
	background-color:#333333;
	background-color:rgba(30,30,30,0.80);
	display:none;
	z-index:1000;	
}

#gallery .focus {
	position:absolute;
	left:50%;
	top:50%;
	width:720px;
	height:404px;
	margin-left:-360px;
	margin-top:-202px;
	background-color:#FFF;
	box-shadow: 0, 0, 5px, rgb(20,20,20);
}

#gallery .focus .close {
	position:absolute;
	right:-30px;
	top:-30px;
	width:24px;
	height:24px;
	padding:0;
	box-shadow: 0, 0, 5px, rgb(20,20,20);
	background-repeat:no-repeat;
	background-image:url(../pics/close.png);
	cursor:pointer;
}