.popup_link {
	cursor:				pointer;
}

.popup {
	top:				50%;
	left:				50%;
	position:			absolute;
	border:				solid red 1px;
	z-index:			9999999;
}
.popup_border {
	position:			absolute;
	border:				solid black 1px;
	background-color:	#999999;
	color:				#000000;
	padding:			10px;

	/* Top and Left should be minus half */
	/* the width and height */
	left:				-300px;
	top:				-150px;
}

.popup .surround {
	border:				solid black 1px;
}

.popup .title {
	background-color:	#f29c40;
	padding:			5px;
	color:				#FFFFFF;
	text-align:			left;
}

.popup .content {
	background-color:	#FFFFFF;
	padding:			5px;
	height:				300px;
	overflow-y:			auto;
	overflow-x:			hidden;
	width:				600px;
	border-top:			solid black 1px;
	border-bottom:		solid black 1px;
	text-align:			left;
}

.popup .close {
	background-color:	#F7CD95;
	padding:			2px;
	text-align:			right;
}
