@charset "UTF-8"

#imageViewer {
	position: absolute;
	top: 0;
	left: 0;
	/* NOTE: the size and width should be set dynamically when initialized */
	/*
	width: 256px;
	height: 256px;
	*/
	width: 100%;
	height: 100%;
	background-color: #ffffff;
	border: 0px solid #6290d2;
}
#imageViewer .well, #imageViewer .surface {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	position: absolute;
	/* top: 100px;
	left: 13px; */
  /* borderいれると、拡縮でアイコンの位置がずれます */
	border:0 groove gray;
	/* FIXME: let's apply this in GSV.js */
	/*cursor: grab;*/
	cursor: -moz-grab;
/*
	cursor: url(gfx/grab.cur);	/* なぜか../gfxにするとエラーになる */

}
#imageViewer .surface {
	z-index: 20;
	/* 上と違って ../ 抜くとエラーになる */
/*	background: url(gfx/center.png) no-repeat center center; */
/*		_background: url(gfx/blank.gif) no-repeat center center; */ /* NOTE: required for IE to"see" the surface */
	background-color: white;
	opacity: 0;
	filter: alpha(opacity=0);
}
#imageViewer .surface a{
	text-decoration: none;
	-moz-outline: none;
}
#imageViewer .surface a img {
	border: 0;
	vertical-align: middle;
}

#imageViewer .well {
	overflow: hidden;
	z-index: 10;
}
#imageViewer .well .tile
{
	border: 0px solid darkgray;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 0px;
	left: 0px;
	display: block;
	/*-moz-outline: 1px dashed #FF0000;*/
}



#imageViewer .rbcontrols
{
	background-color: transparent;
	position: absolute;
	/* NOTE: the right and bottom can be adjusted when initialized */
	right: 0;
	bottom: 0;
	margin: 0;
	padding: 0 0 0 4px;
	font-size: 12px;
	line-height: 20px;
	vertical-align: middle;
	font-weight: bold;
	z-index: 60;
}

#imageViewer .ltcontrols
{
	background-color: transparent;
	position: absolute;
	/* NOTE: the right and bottom can be adjusted when initialized */
	left: 0;
	top: 0;
	margin: 0;
	padding: 0 0 0 4px;
	font-size: 12px;
	line-height: 20px;
	vertical-align: middle;
	font-weight: bold;
	z-index: 60;
}

#imageViewer .lbcontrols
{
	background-color: transparent;
	position: absolute;
	/* NOTE: the right and bottom can be adjusted when initialized */
	left: 0;
	bottom: 0;
	margin: 0;
	padding: 0 0 0 4px;
	font-size: 12px;
	line-height: 20px;
	vertical-align: middle;
	font-weight: bold;
	z-index: 60;
}

#imageViewer .rtcontrols
{
	background-color: transparent;
	position: absolute;
	/* NOTE: the right and bottom can be adjusted when initialized */
	right: 0;
	top: 0;
	margin: 0;
	padding: 0 0 0 4px;
	font-size: 12px;
	line-height: 20px;
	vertical-align: middle;
	font-weight: bold;
	z-index: 60;
}





