.popupWindow { 
  display: block; 
  position: absolute;     
  left: 50%;
  top: 50%;
  width: 128px; 
  height: 128px;
  margin-top: -64px;
  margin-left: -64px;
  padding: 0; 
  user-select: none;
  overflow: hidden; 
  background: #aaa; 
  color: black; 
  border-radius: 8px; 
  border: 1px solid; 
  border-color: #ccc #888 #888 #ccc;
  box-shadow: 3px 3px 9px 1px rgba(0,0,0,0.66666); 
  pointer-events: auto;
}   

.popupWindowHead  { 
  display: block; 
  position: relative;
  margin: 4px; 
  min-height: 1em;
  font-weight: bold; 
  user-select: none;
  overflow: hidden; 
} 

.popupWindowClose {
  display: block; 
  position: relative; 
  margin: 4px; 
  padding: 0 0.125em;
  float: right;
  font-size: 1.25em; 
  height: 1em;
  line-height: 1em;
  cursor: pointer;
}

.popupWindowBody  { 
  clear: both;
  display: block; 
  position: relative;
  margin: 4px;
  height: auto; 
  padding: 4px; 
  user-select: none;
  overflow: auto;
  background: #f4f4f4; 
  color: black; 
  border-radius: 6px; 
  border: 1px solid; 
  border-color: #888 #ccc #ccc #888;
} 

.popupWindowFoot  { 
  display: block; 
  position: relative;
  margin: 4px;
  padding: 0;
  height: auto; 
  user-select: none;
  text-align: center;
  overflow: hidden; 
} 

#popupOverlay {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  cursor: forbidden; 
  user-select: none;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.2);
  pointer-events: auto;
}  

.avPopupCalendarCell {
  display: block;
  margin: 4px 3px 3px 4px; 
  width: 16px; 
  height: 16px; 
  padding: 6px 8px; 
  float: left; 
  text-align: center;  
  background: white;
  border-radius: 3px;
  font-size: 15px;
  cursor: pointer;
  box-sizing: content-box; 
}

.avPopupCalendarCell.avPopupCalendarCellActive {
  border: 3px solid #7092BE;
  padding: 3px 5px;
  font-weight: bold;
}

.avPopupCalendarCell.avPopupCalendarCellSunday {
  color: red;
}

.avPopupCalendarCell.avPopupCalendarCellEmpty {
  background: transparent;
}

.avPopupClockText {
  margin: 4px; 
  width: 266px; 
  background: white; 
  font-size: 64px; 
  text-align: center;
}

.avPopupClockWheel {
  margin:8px 7px 0 8px; 
  width:76px; 
  height:160px; 
  float:left; 
  background:white; 
  background: linear-gradient(to bottom, #fff, #999);
  border-radius: 3px; 
  box-shadow: inset 0 0 4px 2px #666;
  overflow:auto; 
  cursor: pointer;
}

.avPopupClockWheel::-webkit-scrollbar {
  display: none;
}

.avPopupClockWheelInner {
  background: repeating-linear-gradient(to bottom, #808080 0px, transparent 5px,transparent 8px);
  font: 14px bold Arial;
  text-align: center;
  text-shadow: 1px 1px white, -1px -1px #444;
}

