/*
* CSS file
*/

#overlayDlg {
  position: fixed; 
  display: none; 
  width: 100%; 
  height: 100%; 
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.25);
  z-index: 2;
  cursor: default;
}

#overlayDlg > #frmEvent {
    border: solid black 1px;
    padding: 10px;
    position: fixed;
    top: 40%;
    left: 40%;
    background-color: #fff;
}

#frmEvent > #frmLabel {}
#frmEvent > #frmControls {}
#frmEvent > #frmButtonBar {}