#popup_background{
	height: 100%;
	width: 100%;
	opacity: 0.5;
	-moz-opacity: 0.5;
	background-color: black;
	position: fixed;
	top: 0px;
	left: 0px;
	z-index: 999;
	filter: alpha(opacity=50);
}

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

#popup_title {
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	line-height: 1.75em;
	color: #666;
	background: #CCC url(/library/images/plugins/alerts/title.gif) top repeat-x;
	border: solid 0px #FFF;
	border-bottom: solid 1px #999;
	cursor: default;
	padding: 0em;
	margin: 0em;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	-moz-border-radius-topleft: 7px;
	-moz-border-radius-topright: 7px;
}

#popup_content {
	background: 16px 16px no-repeat url(/library/images/plugins/alerts/info.gif);
	background-color: white;
	padding: 1em 1.75em;
	margin: 0em;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	-moz-border-radius-bottomleft: 7px;
	-moz-border-radius-bottomright: 7px;
}

#popup_content.alert {
	background-image: url(/library/images/plugins/alerts/info.gif);
}

#popup_content.confirm {
	background-image: url(/library/images/plugins/alerts/important.gif);
}

#popup_content.prompt {
	background-image: url(/library/images/plugins/alerts/help.gif);
}

#popup_message {
	padding-left: 48px;
}

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

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

#popup_container input[type=button]{
	padding: 2px 4px;
}

#popup_message p{
	margin: 0px;
}