@charset "utf-8";

/* Table of Contents + -------------------------------------*/
/* 
     1-1.light box(16)
*/
/*----------------------------------------------------------*/


/*////////////////////////////////////////////////////////////

  1-1.light box

////////////////////////////////////////////////////////////*/

#overlay {
	position: absolute;
	left: 0;
	top: 0;
	height: 500px;
	width: 100%;
	z-index: 90;
	background-color: #000000;
	-moz-opacity: 0.6;
	filter: alpha(opacity=60);
	opacity: 0.6;
}
#lightbox {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 100;
	color: #333333;
	text-align: center;
}
#outerImageContainer {
	position: relative;
	height: 250px;
	width: 250px;
	margin: 0 auto;
	background: #ffffff;
}
#imageContainer { padding: 15px 0 30px;}
#loading {
	position: absolute;
	left: 0%;
	top: 40%;
	height: 25%;
	width: 100%;
}

/* close btn is set. */
#closeNav {
	position: absolute;
	top: 8px;
	right: 16px;
	z-index: 110;
}
#closeNav a {
	font-size: 12px;
	height: 12px;
	width: 50px;
	overflow: hidden;
	display: block;
	text-indent: -9999px;	
	/*\*/overflow: hidden;/**/
}
a#closeBtn {
	text-decoration: none;
	background: url(/img/shared/lightbox_close.gif) no-repeat left top;
}
a#closeBtn:hover { background-position: 0px -12px;}

/* bottom navigation is set. */
#imageDataContainer {
	position: relative;
	height: 30px;
	width: 250px;
	margin: 0 auto;
	background: #ffffff;
}

/* image number is set. */
#imageNumber {
	position: relative;
	width: 80px;
	padding: 5px 0 0;
	margin: 0 auto;
	z-index: 120;
	text-align: center;
}
#imageNumber #numberDisplay {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bolder;
}

/* navigation button is set. */
#controlPanel {
	position: absolute;
	left: 0;
	top: 5px;
	height: 15px;
	width: 100%;
	z-index: 110;
}
#hoverNav {
	width: 180px;
	margin: 0 auto;
}
#prevBox { float: left;}
#nextBox { float: right;}
#prevBox a,#nextBox a {
	font-size: 12px;
	display: block;
	width: 50px;
	height: 15px;
	overflow: hidden;
	text-indent: -9999px;
	/*\*/overflow: hidden;/**/
}

a#prevLink {
	text-decoration: none;
	background: url(/img/shared/lightbox_prev.gif) no-repeat left top;
}
a#nextLink {
	text-decoration: none;
	background: url(/img/shared/lightbox_next.gif) no-repeat left top;
}
a#prevLink:hover,
a#prevLink:visited:hover,
a#nextLink:hover,
a#nextLink:visited:hover {
	background-position: 0px -15px;
}
/*----------------------------------------------------------*/