/**
 *
 * jQuery plugin: Popup 1.0
 *
 * Copyright (c) 2008 Yves Bresson
 * www.ybresson.com
 *
 * Default styles
 *
 */
.ratingsPop {
	width:300px;
	background: #FFBE46;
	color:black;
}
.loginPop {
	width:350px;
	background: #F21201;
	color:white;
}

#popup {
  display: none;
  position: fixed;
  _position: absolute; /* hack for internet explorer 6 */
  z-index: 20;
  padding: 2px;  /* same as rounding */
}
#popup a{
	font-family:verdana;
}
#popup_bg {
  display: none;
  position: fixed;
  _position: absolute; /* hack for internet explorer 6 */
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: white;
  border: 1px solid #cecece;
  z-index: 10;
}

#popup_title {
  font-weight: bold;
  padding-left:10px;
}

#popup_close {
  width: 15px;
  height: 15px;
  background: url('/gfx/close-off.gif') no-repeat;
  position: absolute;
  right: 4px;
  cursor: pointer;
  top:5px;
}
#popup_close:hover {
  background: url('/gfx/close.gif') no-repeat;
}

#popup_message {
  padding: 8px;
  background: white;
  color:black;
  margin-top:5px;
  /*min-height: 120px;*/
}
