/*
 popup.js
*/
div.popup {
  width: 600px;
  padding: 5px;
  /* The following properties should not be changed */
  position: absolute;
}

div.popup .top
{
	background-image: url(/images/popup-top.png);
	background-position: top right;
	background-repeat: no-repeat;
	padding:5px 11px 5px 5px;
}

div.popup .middle
{
	background-image: url(/images/popup-middle.png);
	background-position: top right;
	background-repeat: repeat-y;
	padding:10px 15px 10px 10px;
}

div.popup .bottom
{
	background-image: url(/images/popup-bottom.png);
	background-position: bottom right;
	background-repeat: no-repeat;
	height:20px;
}

div.popup h2
{
	border:1px solid #b3afa4;
}

#popup_overlay {
  background-color: #444;
  /* The following properties should not be changed */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 500px;
}

span.popup_link, a.popup_link, div.popup_link {
  cursor: pointer;
}

.popup_draghandle {
  cursor: move;
}

.popup_closebox
{
	background-image: url(/images/icons/cancel2.png);
	background-position: top left;
	background-repeat: no-repeat;
	display:block;
	float:right;
	height: 35px;
	margin-left:20px;
	width: 85px;
}
