/* シャドー・レイヤー (viewer.js内でのみ使用される)*/
#shadow {
	position: fixed;		/*IE6ではfixedは使えない→viewer-ie6.css */
	left: 0px;
	top: 0px;
	background-color: #000;
	filter: alpha(opacity=70);	/* IE用 */
	-moz-opacity: 0.7;			/* FireFox用 */
	opacity: 0.7;				/* Safari用 */
}
* html #shadowxxx {	/* IE6のみ読込(star html hack)*/
	display: none;
}

/* 拡大画像 */
#bigimage {
	position: fixed;
	top: 100px;
	border: 5px solid #FFF;
}
* html #bigimagexxx {	/* IE6のみ読込(star html hack)*/
	position: static;
	bottom: 100px;
	border: 5px solid #FFF;
}


/* now loading... */
#loading {
	position: fixed;
	text-align: center;
	font-size: large;
	font-weight: bold;
	color: #FFF;
}

