#popup_container {
	font-family: Verdana,Geneva,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: #FFF;
	color: #000;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
}

#popup_title {
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	line-height: 1.75em;
	color: #555;
	background: #CCC url(../img/jquery_alerts/title.gif) top repeat-x;
	cursor: default;
	padding: 0em;
	margin: 0em;
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
	display: none;
}

#popup_content {
	background: 16px 16px no-repeat url(../img/jquery_alerts/info.gif);
	background: none;
	padding: 0.5em 1em;
	margin: 4px;
}

#popup_content.alert {
	background-image: url(../img/jquery_alerts/info.gif);
	background-image: none;
}

#popup_content.confirm {
	background-image: url(../img/jquery_alerts/important.gif);
	background-image: none;
	position: relative;
}

#popup_content.prompt {
	background-image: url(../img/jquery_alerts/help.gif);
}

#popup_message {
	padding-left: 0px;
	text-align: center;
	margin: 8px 0 16px 0px;
}

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

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

#popup_ok,
#popup_cancel {
	background: transparent;
	background-image: url("../img/background.png");
	background-position: -1080px -875px;
    font-size: 12px;
    font-weight: bold;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border: medium none;
    cursor: pointer;
    width: 105px;
    text-decoration: underline;
    color: #fff;
}

#popup_ok:hover,
#popup_cancel:hover {
	text-decoration: none;
}

#popup_ok::-moz-focus-inner,
#popup_cancel::-moz-focus-inner {
	border: none;
	outline: 1px dotted #000;
}

#popup_ok:focus,
#popup_cancel:focus {
	border: none;
	outline: 1px dotted #000;
}