#popup_container {
    font: 85% normal Arial, Verdana, Geneva, sans-serif;
	min-width: 300px; /* Dialog will be no smaller than this */
	max-width: 450px; /* Dialog will wrap after this width */
	background: #FFF;
	border: solid 3px #999;
	color: #000;
	border-radius: 5px;
}

#popup_title {
	font-size: 12px;
	font-weight: bold;
	text-align: center;
	line-height: 1.75em;
	color: #FFFFFF;
	border: solid 1px #FFF;
	border-bottom: solid 1px #999;
	cursor: default;
	padding: 0em;
	margin: 0em;
    background-color: #0088cc;
    background-image: -moz-linear-gradient(top, #0088cc, #0375af);
    background-image: -ms-linear-gradient(top, #0088cc, #0375af);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0375af));
    background-image: -webkit-linear-gradient(top, #0088cc, #0375af);
    background-image: -o-linear-gradient(top, #0088cc, #0375af);
    background-image: linear-gradient(top, #0088cc, #0375af);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#0088cc', endColorstr = '#0375af', GradientType = 0);
}

#popup_content {
	background: 16px 16px no-repeat;
	padding: 1em 1em;
	margin: 0;
}

#popup_content.alert {
	background-image: url( ../images/info.gif );
}

#popup_content.confirm {
	background-image: url( ../images/important.gif );
}

#popup_content.prompt {
	background-image: url( ../images/help.gif );
}

#popup_content.info {
	background-image: url( ../images/info.gif );
    text-align: center;
}

#popup_message {
	padding-left: 48px;
}

#popup_panel {
	text-align: center;
	margin: 1em 0 0em 1em;
}

#popup_prompt {
	margin: .5em 0em;
}