.jmPopupWindow { 
  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; 
  xborder-color: #ccc #888 #888 #ccc;
  xborder-color: rgba(255,255,255,0.25) rgba(0,0,0,0.25) rgba(0,0,0,0.25) rgba(255,255,255,0.25);
  box-shadow: 3px 3px 9px 1px rgba(0,0,0,0.66666); 
  pointer-events: auto;
}   

.jmPopupWindowHead  { 
  display: block; 
  position: relative;
  margin: 4px; 
  min-height: 1em;
  font-weight: bold; 
  user-select: none;
  overflow: hidden; 
} 

.jmPopupWindowClose {
  display: block; 
  position: relative; 
  margin: 4px; 
  padding: 0 0.125em;
  float: right;
  font-size: 1.25em; 
  height: 1em;
  line-height: 1em;
  cursor: pointer;
}

.jmPopupWindowBody  { 
  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 #aaa; 
  xborder-color: rgba(0,0,0,0.25) rgba(255,255,255,0.25) rgba(255,255,255,0.25) rgba(0,0,0,0.25);
  background-clip: padding-box;
} 

.jmPopupWindowFoot  { 
  display: block; 
  position: relative;
  margin: 4px;
  padding: 0;
  height: auto; 
  user-select: none;
  text-align: center;
  overflow: hidden; 
} 

#jmPopupOverlay {
  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;
}  

.jmPopupCalendarCell {
  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; 
}

.jmPopupCalendarCell.jmPopupCalendarCellActive {
  border: 3px solid #7092BE;
  padding: 3px 5px;
  font-weight: bold;
}

.jmPopupCalendarCell.jmPopupCalendarCellSunday {
  color: red;
}

.jmPopupCalendarCell.jmPopupCalendarCellEmpty {
  background: transparent;
}

.jmPopupClockText {
  margin: 4px; 
  width: 266px; 
  background: white; 
  font-size: 64px; 
  text-align: center;
}

.jmPopupClockWheel {
  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;
}

.jmPopupClockWheel::-webkit-scrollbar {
  display: none;
}

.jmPopupClockWheelInner {
  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;
}

