@charset "utf-8";
/* CSS Document */
 .DraggableDivToTop {/* Bring the draggable div to the top.  This makes it so that divs can be added anywhere in the page, and still show up properly */
	position:absolute;
	top:0px;
	left:0px;
	width:100%;
	z-index:75;
}
.DraggableDivToCenter {/* Centers div on the page. */
	position:relative;
	margin-left:auto;
	margin-right:auto;
}
.DraggableDiv {
	position: absolute;
	visibility:hidden;
	background-color: #FFFFFF;
	border-color:#646464;
	border-style:solid;
	border-width:1px;
	padding:0px;
	z-index:100;
	border:1 px solid #152D69;
	top:150px;
}
.DraggableDivCloseButton {/* Close button in upper right corner */
	position:absolute;
	top:6px;
	right:6px;
	cursor:pointer;
	width:13px;
	height:13px;
	background-image:url(http://www.harrahs.com/images/X.gif);
	background-repeat:no-repeat;
}
.DraggableDivHandle {/* The handle is the area of the popup that the user clicks and drags to make the popup div draggable */
	cursor:move;
	height:25px;
	background-color:#152D69;
	margin:1px;
}
.DraggableDivHandleText {
	margin-left:10px;
	margin-right:15px;
	text-align:left;
	color:#FFFFFF;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	text-transform:uppercase;
	font-size:10.5pt;
	font-weight:700;
	padding-top:4px;
}
.DraggableDivContent {
	padding:20px;
	margin-left:auto;
	margin-right:auto;
}
.DraggableDivClose {/* Textual close link at the bottom of the div */
	text-align:center;
	cursor:pointer;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:8pt;
	text-decoration:underline;
	padding-top:10px;
	padding-bottom:10px;
}
#overlay {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 20;
	width: 100%;
	height: 500px;
	background-color: #000;
	filter: alpha(opacity=50);
	-moz-opacity: 0.5;
	opacity: 0.5;
}
