/*
 popup.js
*/
div.popup {
  max-width: 900px;
  border: 1px solid silver;
  padding: 2px;
  background-color: #DB251F;  
  /* The following properties should not be changed */
  position: absolute;
  font-weight: normal;
  line-height: normal;
}

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

div.popup a.popup_draghandle, div.popup a.popup_close {	
	color: #FFFFFF;
	text-decoration: none;
}

.popupBox {
	padding: 5px;
	clear: both;		
	width: 300px;
}

.popupBox form {
	padding: 10px;
	background: #FFFFFF;
	border: 1px solid silver;	
	display: block;	
	clear: both;
	margin: 0px;
}

.popup_title {
	color: #FFFFFF;
	text-transform: uppercase;
	font-weight: bold;
	width: 70%;
	position: absolute;
	left: 15%;
	line-height: 20px;
	padding-bottom: 2px;
	text-align: center;
	margin: 0px;
}

.popup_open {
	color: #FF0000;
	cursor: pointer;
}

.popup_draghandle {
  display: block;
  float: left;
  cursor: move;
  margin-bottom: 3px;  
  padding: 0px;
}

.popup_close {
  display: block;
  float: right;  
  margin-bottom: 3px;  
  padding: 0px;
}