#popup_container {
	font-family: Arial, sans-serif;
	font-size: 11px;
	min-width: 300px; /* Dialog will be no smaller than this */
	max-width: 600px; /* Dialog will wrap after this width */
	background: #F0F0F0;
	border: solid 5px #CCCCCC;
	color: #000;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}

#popup_title {
	font-size: 13px;
	font-weight: bold;
	text-align: left;
	line-height: 1.75em;
	color: #E5ECF9;
	background: #2653a3;
	border: solid 1px #FFF;
	border-bottom: solid 1px #FFF;
	cursor: default;
	padding-left:3px;
	margin: 0em;

}

#popup_content {
	background: 16px 16px no-repeat url(/images/info.gif);
	padding: 1em 1.75em;
	margin: 0em;
}

#popup_content.alert {
	background-image: url(/images/info-icon.png);
}

#popup_content.confirm {
	background-image: url(/images/warning-icon.png);
}

#popup_content.prompt {
	background-image: url(/images/help.png);
}

#popup_message {
	padding-left: 40px;
	padding-top: 10px;
}

#popup_panel {
	text-align: center;
	margin: 1em 0em 0em 1em;
}

#popup_prompt {
	margin: .5em 0em;
}

#popup_panel input
{
cursor:pointer;
margin-right: 2px;
}

#popup_panel #popup_ok
{
background-color:#2653A3;
padding:3px;
color:#e5ecf9;
float:right;
margin-top:5px;
margin-bottom:10px;
font-weight:bold;
border:#26a thin solid;

}

#popup_cancel
{
background-color:#F7F7F7;
border:#777777 thin solid;
padding:3px;
color:#000000;
float:right;
margin-top:5px;
margin-bottom:10px;
font-weight:bold;

}