/**
 * POPUP CONTAINER STYLES
 */
#popupMask {
  position: absolute;
  z-index: 200;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #CCCCCC;
  /*opacity: .4;
  filter: alpha(opacity=40);
  background-color:transparent;
   this hack is so it works in IE
   * I find setting the color in the css gives me more flexibility 
   * than the PNG solution.
   
  /* this hack is for opera support
   * you can uncomment the background-image if you don't care about opera.
   * this gives you the flexibility to use any bg color that you want, instead of the png
   *
  background-image: url("/images/maskBG.png");
  background-repeat: repeat;*/
  display:none;
}
#popupContainer {
  position: absolute;
  z-index: 201;
  top: 0px;
  left: 0px;
  display:none;
  padding: 0px;
}
#popupInner {
  border: 2px solid #000000;
  background-color: #ffffff;
}

#popupFrame {
  margin: 0px;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 202;
}
#popupTitleBar {
  background-color: #5A452B;
  color: #ffffff;
  font-family:Verdana 12px;
  font-weight: normal;
  height: 1.3em;
  padding: 5px;
  border-bottom: 2px solid #5A452B;
  border-top: 1px solid #5A452B;
  border-left: 1px solid #5A452B;
  border-right: 1px solid #5A452B;
  position: relative;
  z-index: 203;
}
#popupTitle {
  float:left;
  font-size: 12 px;
  font-family: verdana;
  font-weight: normal;
  height: 1.2em;
}
#popupControls {
  float: right;
  cursor: pointer;
}
