/*dialog*/
.dialogbox {
//	width:100%;
	width:250px;
	position: absolute;
	z-index: 101;
	border:2px solid red; 
	border-radius: 10px; 
	padding:5px;
	background-color: #09f9ff;
}
.dialogboxBody {
	padding: 0;
	margin: 0;
	background-color: #09f9ff;
	min-width: 200px;
}
.dialogboxOverlay {
  position: absolute;
  left: 0;
  top: 0;
  background: #003366;
  z-index: 100;
}
.dialogTips {
  text-align: center;
  font-size: 16px;
  padding: 20px 20px;
  min-width: 200px;
}
.dialogTips img {
  vertical-align: middle;
  margin-right: 10px;
}
.dialogLoading {
	height: 50px;
	width: 50px;
	margin: auto;
}
.dialogPrompt {
  position: absolute;
  left: 50%;
  top: 50%;
  padding: 8px 15px;
  background-color: #000;
  background-color: rgba(0, 0, 0, .8);
  color: #fff;
  border-radius: 5px;
}
.dialogConfirm {
  padding: 10px;
  text-align: center;
  border-top: 1px solid #003366;
}
.dialogConfirm .button {
  margin: 0 5px;
}
.button-default {
  border: 1px solid #003366;
  background-color: #003366;
  -webkit-transition: all .5s;
  transition: all .5s;
  color: #f9f9ff;
  display: inline-block;
  padding: 5px 15px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  cursor: pointer;
  font-size: 14px;
  margin:5px auto;
}
.button-default:hover {
  color: #003366;
  background-color: #d7e3ed;
  border-color: #003366;
}
