/**
 *
 * jQuery plugin: Popup 1.0
 *
 * Copyright (c) 2008 Yves Bresson
 * www.ybresson.com
 *
 * Default styles
 *
 */

#popup {
  display: none;
  position: absolute;
   top: 50%;
	left: 50%;	
  width: 900px;
  
  background: #fff;
  z-index: 20;
  /* padding: 5px;  same as rounding */
  color: #565656;	
  z-index: 1000000;	
  text-align: left;	
  line-height: 18px;	
	

}

#popup_bg {
  display: none;
  position: fixed;
  _position: absolute; /* hack for internet explorer 6 */
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: #000000;
  z-index: 10000;
}

#popup_title {
  font-weight: bold;
  color: #ffffff;
}

#popup_close {
  width: 19px;
  height: 19px;
  background: url('close.gif') no-repeat;
  position: absolute;
  right: 3px;
  cursor: pointer;
}
#popup_close:hover {
  background: url('close.gif') no-repeat;
}

#popup_message {
  padding: 0px;
  background: #ffffff;
  	
  /*min-height: 320px;*/
}
