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

#popup {
  display: none;
  position: fixed;
  width: auto;
  _position: absolute; /* hack for internet explorer 6 */  
  z-index: 20;  
}

#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: 10;
}

#popup .title_left {
	width: 10px;
	height: 25px;
	background: url(../img/tpl/popup_top_left.gif);	
}

#popup .title_right {
	width: 10px;
	height: 25px;
	background: url(../img/tpl/popup_top_right.gif);	
}

#popup_title {
  font-weight: bold;
  color: #484848;
  background: #e6e6e6;
  text-transform: uppercase;
  font-size: 10px;
  padding: 0px 10px;
}

#popup .content_left {
	width: 10px;
	background:  url(../img/tpl/popup_left.gif);		
}

#popup .content_right {
	width: 10px;
	background:  url(../img/tpl/popup_right.gif);		
}

#popup_close {
  width: 11px;
  height: 11px;
  background: url(../img/tpl/delgr.gif) no-repeat;
  position: absolute;
  right: 10px;
  top: 7px;
  cursor: pointer;
}
#popup_close:hover {
  background: url(../img/tpl/delgr_hover.gif);
}

#popup_message {
  padding: 10px;
  background: #ffffff;
  font-size: 11px;
  line-height: 21px;
  /*min-height: 120px;*/
}

#popup_message.scroll {
	overflow: scroll;
	overflow-x:hidden; 	
}

#popup .footer_left {
	width: 10px;
	height: 10px;
	background: url(../img/tpl/popup_bottom_left.gif);			
}

#popup .footer_bottom {
	height: 10px;
	background: url(../img/tpl/popup_bottom.gif) repeat-x;			
}

#popup .footer_right {
	width: 10px;
	height: 10px;
	background: url(../img/tpl/popup_bottom_right.gif);			
}