@charset "utf-8";
/* CSS Document */
/* Z-index of #mask must lower than #boxes .window */
#mask {
  position:absolute;
  z-index:9000;
  background-color:#000;
  display:none;
}
  
.window {
  position:absolute;
  width:440px;
  height:200px;
  display:none;
  z-index:9999;
  padding:20px;
}

/* Customize your modal window here, you can add background image too */
#dialog {
  width:375px; 
  height:50px;
  background-color:#fff;
  border:#065cbc solid 2px;
}
.closeicon{
	background:url(../images/japanese/closeicon.jpg) no-repeat;
	display:inline-block;
	width:27px;
	height:27px;
	float:right;
	margin:5px 5px 0px 0px;
	cursor:pointer;
}