
/*dialog*/

.dialogbox {
  position: absolute;
  z-index: 101;
  border-radius: 5px;
  border: 5px solid #cccccc;
}
.dialogboxTitle {
  border-bottom: 1px solid #e3e3e3;
  padding: 10px 50px 10px 20px;
  font-size: 20px;
  color: #fff;
  background-color: #01a748;
 /* cursor: move;
  */
}
.dialogboxTitle span, .dialogboxClose, .dialogboxPrev, .dialogboxNext {
  background: url(../images/dialogbox_sprite.png) no-repeat;
}
.dialogboxTitle span {
  display: block;
  width: 25px;
  height: 25px;
  background-position: 0 -62px;
  margin: auto;
}
.dialogboxBody {
  padding: 0;
  background: #fff;
 /* min-width: 500px;*/
}
.dialogboxClose {
  position: absolute;
  right: 8px;
  top: 8px;
  cursor: pointer;
  height: 30px;
  width: 30px;
}
.dialogboxClose:hover {
  background-position: 0 -30px;
}
.dialogboxOverlay {
  position: absolute;
  left: 0;
  top: 0;
  background: #000;
  z-index: 100;
}
.dialogTips {
  text-align: center;
  font-size: 16px;
  padding: 20px 50px;
  min-width: 200px;
}
.dialogTips images {
  vertical-align: middle;
  margin-right: 10px;
}
.dialogTopTips {
  padding: 5px 20px;
  background-color: #f1f1f1;
}
.dialogConfirm {
  padding: 10px 50px;
  text-align: center;
  border-top: 1px solid #ddd;
}
.dialogConfirm .button {
  margin: 0 15px;
}
.dialogLoading {
  background: url(../images/loading_small.gif) no-repeat 50% 50%;
  height: 50px;
  width: 50px;
  margin: auto;
}
.dialogboxIframe .dialogboxBody {
  padding: 0;
}
.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;
}

/*button*/

.button-default, .button-white, .button-disabled {
  border: 1px solid #01a748;
  background-color: #01a748;
  -webkit-transition: all .5s;
  transition: all .5s;
  color: #fff;
  display: inline-block;
  padding: 5px 15px 25px 15px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  cursor: pointer;
  font-size: 14px;
}
.button-default:hover {
  color: #fff !important;
     background-color: #a6ce39;
    border-color: #a6ce39;
	 text-decoration:none; padding: 5px 15px 25px 15px;  height: 20px;   line-height: 20px; font-size: 14px;
}

.button-disabled, .button-disabled:hover {
      background-color: #a6ce39;
    border-color: #a6ce39;
  color: #fff;
  cursor: default;
}
.button-white {
   border: 1px solid #01a748;
  background-color: #01a748;
  color: #fff;   padding: 5px 15px 25px 15px;
    height: 20px;
  line-height: 20px;
  text-align: center;
  cursor: pointer;
  font-size: 14px;
}
.button-white:hover {
     color: #fff;
     background-color: #a6ce39;
    border-color: #a6ce39;
	 text-decoration:none; padding: 5px 15px 25px 15px;  height: 20px;   line-height: 20px; font-size: 14px;
}
.btn.btn-success{
      background-color: #eee;
    color: #000;
	border:1px solid #000;
}
.btn.btn-success:hover{
	background-color:#81ba35;
	color: #fff;
	border:1px solid #81ba35;
	text-decoration: none;
	
}
.btn.btn-default{
	   background-color: #eee;
    color: #000;
	border:1px solid #000;
}
.btn.btn-default:hover{
	background-color:#81ba35;
	color: #fff;
	border:1px solid #81ba35;
	text-decoration: none;
}