.mydialog
{
	position:fixed;
	top:50%;
	left:50%;
	transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	background-color:#eee;
/* 	border-radius:3px; */
	z-index:10000;
	text-align:center;
	max-width:250px;
	box-shadow: 0 1px 5px #000;
}

.mydialog .upper
{
	padding:10px;
	max-width:250px;
	border-bottom:1px solid #999;
}

.mydialog .inner
{
	display: table-row;
	width: 100%;
}

.mydialog .diagtitle
{
	font-weight:600;
	margin-bottom:5px;
}

.mydialog .diagbuttons
{
	display:table;
	table-layout:fixed;
	width:100%;
}

.mydialog .diagbtn
{
	color:#37a;
	border-right:1px solid #999;
	display:table-cell;
	padding:10px 0;
	cursor:pointer;
}

.mydialog .diagbtn:active
{
	background-color:#ddd;
}

.mydialog .diagbtn.confirm
{
	font-weight:600;
}

.mydialog .diagbtn:last-child
{
	border-right:0;
}

.mydialog .diagtwrap
{
	border:1px solid #999;
/* 	border-radius:3px; */
	margin-top:10px;
	background-color:#fff;
	padding:4px;
}

.mydialog .diagtwrap input
{
	border:0;
	outline:0;
	padding:0;
	margin:0;
	-webkit-appearance: none;
/* 	border-radius:3px; */
	display:block;
	width:100%;
	background-color:#fff;
}

.dialogblock
{
	top:0;
	left:0;
	right:0;
	bottom:0;
	background-color:rgba(100,100,100,.5);
	z-index:9999;
	position:fixed;
}