/**
 *
 * jQuery plugin: Popup 1.0
 *
 * Copyright (c) 2008 Yves Bresson
 * www.ybresson.com
 *
 * Default styles
 *
 */

#popup {
  display: none;
  position: fixed;
  width: 350px;
  _position: absolute; /* hack for internet explorer 6 */
  background:#f76a1e;
  z-index: 20;
  padding: 5px;  /* same as rounding */
}

#popup_bg {
  display: none;
  position: fixed;
  _position: absolute; /* hack for internet explorer 6 */
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background:#000000;
  border: 1px solid #cecece;
  z-index: 10;
}

#popup_title {
font-family:Arial, Helvetica, sans-serif;
font-size:14px;
  font-weight: bold;
  color:#000000;
}

#popup_close {
  width: 50px;
  height: 16px;
  background: url('close-off2.png') no-repeat;
  position: absolute;
  right: 5px;
  cursor: pointer;
}
#popup_close:hover {
  background: url('close-off2.png') no-repeat;
}

#popup_message {
  padding: 8px;
  background-color:#FFFFFF;
  font-family:Arial, Helvetica, sans-serif;
  font-size:12px;
  /*min-height: 120px;*/
}
