/**
 *
 * jQuery plugin: Popup 1.0
 *
 * Copyright (c) 2008 Yves Bresson
 * www.ybresson.com
 *
 * Default styles
 *
 */

#popup {
  //background-image:url('../dsg/cart_title_bg.gif');
  //background-repeat:repeat-X;
  background-color: #242424;
  display: none;
  position: fixed;
  width: 350px;
  _position: absolute; /* hack for internet explorer 6 */
  //background: #242424;
  z-index: 20;
  border: 2px solid #FFFFFF;
  padding: 15px;  /* 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: #242424;
  border: 1px solid #cecece;
  z-index: 10;
}

#popup_title {
  font-weight: bold;
  color: #929292;
}

#popup_close {
  width: 24px;
  height: 20px;
  background: url('../dsg/btn_delete_red.gif') no-repeat;
  position: absolute;
  right: 10px;
  cursor: pointer;
}
#popup_close:hover {
  background: url('../dsg/btn_delete_red.gif') no-repeat;
}

#popup_message {
  margin-top: 20px;
  color:  #FFFFFF;
  background: #242424;
  /*min-height: 120px;*/
}
