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

