@charset "utf-8";


#G_ModalWindowBody {
	width: 1000px;
	background-color: rgba(20,20,20,0.95);
	color: rgba(255,255,255,0.8);
	padding-bottom: 10px;
}

.ie6 #G_ModalWindowBody,
.ie7 #G_ModalWindowBody,
.ie8 #G_ModalWindowBody {
	background-color: transparent;
}


#G_ModalWindowBody #detail-description {
	width: 100%;
	color: #fff;
}

#G_ModalWindowBody #detail-description p {
	font-size: 15px;
	line-height: 20px;
	margin: 10px 0 20px;
	text-align: center;
	width: 100%;
	color: rgba(255,255,255,0.8);
}


#G_ModalWindowBody #figure,
#G_ModalWindowBody #figure ul,
#G_ModalWindowBody #figure li {
	width: 100%;
	height: 100%;
	max-height: 700px;
}

#G_ModalWindowBody #figure {
	position: relative;
	font-size: 0;
	line-height: 0;
	margin-bottom: 20px;
	text-align: center;
	overflow-x: hidden;
}

#G_ModalWindowBody .image-reel {
	position: relative;
	width: auto;
	margin: 0;
	left: 0;
	top: 0;
	border-radius: 15px 15px 0 0;
}

#G_ModalWindowBody .image-reel li {
	position: absolute;
	border-radius: 3px 3px 0 0;
	filter: progid:DXImageTransform.Microsoft.Alpha(enabled=1,opacity=0);
	opacity: 0;
	-webkit-transition: all 1.5s cubic-bezier(0.25, 0.75, 0, 1.0);
	   -moz-transition: all 1.5s cubic-bezier(0.25, 0.75, 0, 1.0);
	        transition: all 1.5s cubic-bezier(0.25, 0.75, 0, 1.0);
}

#G_ModalWindowBody .image-reel li.current {
	filter: progid:DXImageTransform.Microsoft.Alpha(enabled=1,opacity=100);
	opacity: 1;
}

#G_ModalWindowBody .image-reel li img {
	border-radius: 0;
	width: auto;
	height: 100%;
}

.dotIndicator {
	margin: 0 auto;
	text-align: center;
}
.dotIndicator li {
	padding: 3px;
	display: inline-block;
	margin: 0 2px;
	cursor: pointer;
}

.dotIndicator li span {
	width: 6px;
	height: 6px;
	display: block;
	background: #555;
	background: rgba(255,255,255,0.3);
	border-radius: 50%;
	-webkit-transition: all 0.25s ease;
	   -moz-transition: all 0.25s ease;
	        transition: all 0.25s ease;
}

.dotIndicator li:hover span,
.dotIndicator li.current:hover span {
	background: #fff;
	background: rgba(255,255,255,0.7);
}

.dotIndicator li.current span {
	background: #fff;
	background: rgba(255,255,255,1);
}

#G_ModalWindowBody #loading-indicator {
	position: absolute;
	top: 250px;
	width: 740px;
	text-align: center;
	margin-top: 0px;
	z-index: 5000;
}

#G_ModalWindowBody *::-moz-selection {
	background-color: rgba(255,255,255,0.9);
	color: #000;
}
#G_ModalWindowBody *::selection {
	background-color: rgba(255,255,255,0.9);
	color: #000;
}




@media screen and (max-width: 980px) {
	
	#G_ModalWindowBody #detail-description p {
		font-size: 12px;
	}
	
}