/**
 *
 * jQuery plugin: Popup 1.0
 *
 * Copyright (c) 2008 Yves Bresson
 * www.ybresson.com
 *
 * Default styles
 *
 */

#popup {
  display: none;
  position: fixed;
  width: 400px;
  _position: absolute; /* hack for internet explorer 6 */
  background: #8ec640;
  z-index: 1000001;
  padding: 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;
  background: #000000;
  border: 1px solid #cecece;
  z-index: 1000000;
}

#popup_title {
  font-weight: bold;
  color: #ffffff;
  margin-left: 8px;
}

#popup_close {
  width: 14px;
  height: 14px;
  background: url('../images/close-off.png') no-repeat;
  position: absolute;
  right: 10px;
  cursor: pointer;
}
#popup_close:hover {
  background: url('../images/close.png') no-repeat;
}

#popup_message {
  padding: 8px;
  background: #8ec640;
  height: 250px;
  overflow: auto;
  color: #FFFFFF;
  /*min-height: 120px;*/
}

#video_popup {
  display: none;
  position: fixed;
  width: 903px;
  height:480px;
  _position: absolute; /* hack for internet explorer 6 */
  background: #FFF;
  z-index: 1000001;
  padding: 18px;  /* same as rounding */
}

#video_popup_message {
  height: 447px;
  overflow: auto;
  color: #FFFFFF;
  /*min-height: 120px;*/
}

#video_popup_close {
  width: 69px;
  height: 20px;
  background: url('../images/video_close.gif') no-repeat;
  position: absolute;
  right: 18px;
  bottom:13px;
  cursor: pointer;
}
#video_popup_close:hover {
  background: url('../images/video_close.gif') no-repeat;
}

