#sitewideAlertsPopup {
   display: none;
}
#popupWindow {
   position: absolute;
   top: 100px;
   width: 50%;
   left: 25%;
   z-index: 9999;
   height: auto;
   background: white;
   border-radius: 10px;
   border: 1px solid gray;
   box-shadow: 1px 1px 1px 0;
   padding: 30px;
}
#popupWindow #close {
   float: right;
}
#popupWindow .list .item {
   padding-bottom: 25px;
}
#popupWindow .date {
   font-weight: bold;
   padding-bottom: 10px;
}
.lastModifiedDate {
   display: none;
}
#popupScreen {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background-color: black;
   z-index: 9998;
   -moz-opacity: 0.25;
   opacity: .25;
   filter: alpha(opacity=25);
}
body {
   /* do this to make the popupScreen cover the entire page - not just the initially viewable window */
   position: relative;
}


@media (max-width: 767px) {
   #popupWindow {
      width: 60%;
      left: 10%;
   }
}