#messagebox
{
	position: absolute;
	top:50%;
	left:50%;
	min-height:100px;
	min-width:350px;
	background: white;
	z-index:999999;
	border:1px solid gray;
	border-radius:5px;
}

#messagebox_header
{
	height:20px;
	background-color: gray;
	
}
#messagebox_head
{
	height:20px;
}
#messagebox_close
{
	float:right;
}

#messagebox_close img
{
	width:18px;
	padding-top:1px;
	cursor:pointer;
}

#messagebox{
	display:none;
}

#messagebox_title
{
	color:white;
	font-weight: bold;
	float:left;
	margin-left:3px;
	margin-top:3px;
}
#messagebox_text
{
	clear:both;
	padding-top:10px;
	margin-bottom:15px;
}

#messagebox_buttons
{
	bottom:0px;
}
.messagebox_button
{
	float:right;
	height:17px;
	width:50px;
	background-color: #EEE;
	border:1px solid #CCC;
	cursor:pointer;
	text-align: center;
	margin-right:3px;
	border-radius: 2px;
	padding-top:5px;
}

.messagebox_button:hover
{
	border:1px solid #AAA;
}






