@charset "utf-8";


/*  + dialog===================================================================== */
.dialog{
	width:100%;
	height:100%;
	margin:0;
	padding:0 0 0 0;
	position:fixed;
	left:0;
	top:0;
	z-index:2000;
	display:none;
}

.dialog	.inner-dialog{
	width: 300px;
	min-height: 40px;
	border:2px solid #00a0e9;
	background:#ffffff;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
	position: absolute;
	z-index: 10000;
	left: 50%;
	top: 84px;
	margin-left: -150px;
	}
.dialog .btn-close-dialog{
	position: absolute;
	right: 16px;
	top: 10px;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";
	cursor: pointer;
}
.dialog	.dialog-head{
	padding:0 0 0 10px;
	height:38px;
	font-size: 13px;
	font-weight: bold;
	text-align: center;
	line-height:38px;
	color: #555555;
	text-align:center;
	border-bottom:2px solid #c92b2b;
	background: #ffffff;
	background: -moz-linear-gradient(top,  #ffffff 0%, #f7f6f6 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#f7f6f6));
	background: -webkit-linear-gradient(top,  #ffffff 0%,#f7f6f6 100%);
	background: -o-linear-gradient(top,  #ffffff 0%,#f7f6f6 100%);
	background: -ms-linear-gradient(top,  #ffffff 0%,#f7f6f6 100%);
	background: linear-gradient(to bottom,  #ffffff 0%,#f7f6f6 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f7f6f6',GradientType=0 );
	display:block;
}
.dialog	.dialog-body{
	padding: 12px;
	text-align: left;
}

.dialog .text-confirm{
	font-size: 12px;
	padding: 0 0 0 0;
	color: #333333;
}
.dialog	.dialog-foot{
	padding: 0 0 14px 0;
	text-align: center;
}
.dialog	.dialog-foot .btn-confirm{
 font-size: 12px;
 margin: 0 3px;
 padding: 0 1em;
 display: inline-block;
 text-align: center;
 color: #000000;
 border:1px solid #888888;
 border-radius: 4px;
 text-overflow: ellipsis;
 overflow: hidden;
 white-space: nowrap;
 cursor: pointer;
 background: #ffffff;
	background: -moz-linear-gradient(top,  #ffffff 0%, #f5f5f5 49%, #ececec 51%, #f2f2f2 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(49%,#f5f5f5), color-stop(51%,#ececec), color-stop(100%,#f2f2f2));
	background: -webkit-linear-gradient(top,  #ffffff 0%,#f5f5f5 49%,#ececec 51%,#f2f2f2 100%);
	background: -o-linear-gradient(top,  #ffffff 0%,#f5f5f5 49%,#ececec 51%,#f2f2f2 100%);
	background: -ms-linear-gradient(top,  #ffffff 0%,#f5f5f5 49%,#ececec 51%,#f2f2f2 100%);
	background: linear-gradient(to bottom,  #ffffff 0%,#f5f5f5 49%,#ececec 51%,#f2f2f2 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f2f2f2',GradientType=0 );
}

.dialog	.dialog-mask{
	width:100%;
	height:100%;
	position:absolute;
	left:0;
	top:0;
	background:rgba(255,255,255,0.6);
}

/*  - dialog ======================================================================= */