/**
 *
 * jQuery plugin: Popup 1.0
 *
 * Copyright (c) 2008 Yves Bresson
 * www.ybresson.com
 *
 * Default styles
 *
 */

#popup {
  display: none;
  position: fixed;
  width: 480px;
  height:290px;
  _position: absolute; /* hack for internet explorer 6 */  
  z-index: 99999999999;

  background:url(../images/misc/popup-bg.png) no-repeat;
  padding: 50px 0 0 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;
  z-index: 9999999;
}

#popup_title {
  font-size:15px; 
  padding:0 17px 0 20px !important; 
  font-weight:bold;
  margin-top:60px !important;
}

#popup_close {
  width: 50px;
  height: 17px;
  background: url('../images/icons/btn-close.gif') no-repeat;
  position: absolute;
  right: 15px; top:20px;
  cursor: pointer;
}
#popup_close:hover {
  background: url('../images/icons/btn-close.gif') no-repeat;
}

#popup_message {
  padding: 10px 30px 0 20px;
  z-index: 99999999999;
  /*min-height: 120px;*/
}
