.tooldiv{
  display:none;
  position: absolute;
  background-color: white;
}

.g4captcha{
  margin:8px 0px 0px 8px;;
  width: 130px;
  height: 30px;
}

/*DEFAULT BUTTON BEHAVHIOR */
button {
  color: #444444;
  background: #F3F3F3;
  border: 1px #DADADA solid;
  padding: 5px 10px;
  border-radius: 2px;
  font-weight: bold;
  font-size: 9pt;
  outline: none;
}

button:hover {
  border: 1px #C6C6C6 solid;
  box-shadow: 1px 1px 1px #EAEAEA;
  color: #333333;
  background: #999999;
  cursor           : pointer;
}
button:active {
  box-shadow: inset 1px 1px 1px #DFDFDF;   
}
button:active {
  box-shadow: inset 1px 1px 1px #DFDFDF;
}
 
button.g4btn {
  color: white;
  background: rgb(41, 45, 53);
  border: 1px rgb(29, 30, 31) solid;
  box-shadow: inset 0 1px 0 rgb(99, 105, 114);
}

button.g4btn:hover {
  border: 1px rgb(21, 22, 24) solid;
  box-shadow: 0 1px 1px #EAEAEA, inset 0 1px 0 rgb(42, 46, 53);
  background: rgb(17, 17, 17);
  cursor           : pointer;
}

button.g4btn:active {
  box-shadow: inset 0 2px 5px #2370FE;   
}

.g4imgbtn{
  width: 12px;
  height: 12px;
  text-align: center;
}

/*CHECKBOX*/
.chkcontainer {
  display: block;
  position: relative;
  padding-left: 31px;

  cursor: pointer;
  font-size: 11px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.chkcontainer input {

  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
 
  box-shadow: inset 0px 1px 1px rgba(0,0,0,0.5), 0px 1px 0px rgba(255,255,255,.4);
  position: absolute;
  top: 0;
  left: 0;
  height: 12px;
  width: 12px;
  background-color: silver;
}
.checkedreadonly {
  box-shadow: inset 0px 1px 1px rgba(0,0,0,0.5), 0px 1px 0px rgba(255,255,255,.4);
    position: absolute;
    top: 0;
    left: 0;
    height: 12px;
    width: 12px;
    background-color: silver;
  }
  
  .notcheckedreadonly {
    box-shadow: inset 0px 1px 1px rgba(0,0,0,0.5), 0px 1px 0px rgba(255,255,255,.4);
    position: absolute;
    top: 0;
    left: 0;
    height: 12px;
    width: 12px;
    background-color: silver;
  }
  
/* On mouse-over, add a grey background color */
.chkcontainer:hover input ~ .checkmark {

  background-color: #262626;
}

/* When the checkbox is checked, add a black background */
.chkcontainer input:checked ~ .checkmark {
  background-color: #262626;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.chkcontainer input:checked ~ .checkmark:after {
  display: block;
}


/* Style the checkmark/indicator */
.chkcontainer .checkmark:after {
  left: 3px;
  top: -1px;
  width: 4px;
  height: 7px;
  border: solid white;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
/*CHECKBOX*/

.clickable{
  cursor:pointer;
}
.popupdiv {
    display: none;
    position: absolute;
    background-color: #ffffff;
    border: 1px solid #000000;
    top: 50%;
    left: 50%;
    margin-top: -50px;
    margin-left: -50px;
    max-width: 350px;
    z-index: 200;
}
.popupwait{
  position: absolute;
  overflow:hidden;
  border: 1px solid black;
  top: 0px;
  left: 100px;
  background-color: grey;
  display: none;
  width: 40x;
  height:10px;
  max-width:40px;
  max-height: 16px;
  z-index: 110;
}

.waitimg{
  position:relative;
  top:-3px;
  left:-22px;
  width:30px; 
  height:8px;
}


