/**
 *
 * jQuery plugin: Popup 1.0
 *
 * Copyright (c) 2008 Yves Bresson
 * www.ybresson.com
 *
 * Default styles
 *
 */

#popup {
  display: none;
  position: fixed;
  width: 450px;
  _position: absolute; /* hack for internet explorer 6 */
  background: #FFD56F;
  z-index: 1000;
  padding: 1px;  /* same as rounding */
}

#popup_bg {
  display: none;
  position: fixed;
  _position: absolute; /* hack for internet explorer 6 */
  width: 100%;
  top: 0;
  left: 0;
  background: #000000;
  border: 1px solid #cecece;
  z-index: 999;
}

#popup_message {
  padding: 8px;
  background: #FFF9E5;
  /*min-height: 120px;*/
}

#popup_close {
  padding: 8px;
  background: #FFF9E5;
  text-align: center;
  /*min-height: 120px;*/
}
