

  .ui-autocomplete {
   max-height: 300px;
    overflow-y: auto;
    /* prevent horizontal scrollbar */
    overflow-x: hidden; 
  }
  /* IE 6 doesn't support max-height
   * we use height instead, but this forces the menu to always be this tall
   */
  * html .ui-autocomplete {
    height: 100px;
  }
  .ui-dialog {
	  /* display: none;*/
	  background-color:#FFFFCC;
  }
.ui-dialog-buttonpane {
		background: #FFFFCC; 
	}
  .ui-dialog-titlebar {
	  background-color: orange;
	  color:#00356A; 
  }
  .ui-dialog-content {
	  color: #004080;
  }
  .ui-dialog-buttonset .ui-dialog-buttonpane {
	  background-color: orange; 
  }
.ui-dialog-titlebar-close {
	visibility: hidden;
}
  .ui-icon {
  font-size: 2.0em;
 
}

/* เพรสตัน กรุ๊ป */

.blink {
  animation: blink-animation 1s steps(5, start) infinite;
  -webkit-animation: blink-animation 1s steps(5, start) infinite;
}
@keyframes blink-animation {
  to {
    visibility: hidden;
  }
}
@-webkit-keyframes blink-animation {
  to {
    visibility: hidden;
  }
}

.ui-widget-overlay {
   background: #AAA 50% 50% repeat-x;
   opacity: 0.3; /* 2; */
   /*filter: Alpha(Opacity=100);*/
}

.table-hover tbody tr:hover td {
    background: aqua;
}


