#popup_container {
	font-family: Arial, sans-serif;
	font-size: 14px;
	min-width: 300px; /* Dialog will be no smaller than this */
	max-width: 600px; /* Dialog will wrap after this width */
	/*background: #FFF;
	border: solid 5px #999;*/
    background: #F0EEEA;
	border: solid 1px #3E1C06;
	color: #fff;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}

#popup_title {
	font-size: 14px;
	text-align: center;
	color: #fff;
	background: #3E1C06;
	cursor: default;
	padding: 0em;
	margin: 0em;
}

#popup_content {
	background: 16px 16px no-repeat url(images/info.png);
	padding: 1em 1.75em;
	margin: 0em;
}

#popup_content.alert {
	background-image: url(images/info.png);
}

#popup_content.confirm {
    background-image: url("images/important.png?123456");
}

#popup_content.prompt {
	background-image: url(images/help.gif);
}

#popup_message {
	padding: 8px 0 0 40px;
	font-size: 14px;
	color: #000;
}

#popup_panel {
	text-align: center;
	margin: 1em 0em 0em 1em;
	font-size: 14px;
	color: #000;
}

#popup_prompt {
	margin: .5em 0em;
}

/******* self added ********/
#popup_cancel {
    width: 56px;
    height: 22px;
    display:inline-block;
    /*background: no-repeat url(images/cancel.png);
    vertical-align: bottom;*/
    cursor: pointer;
}
#popup_cancel>a {
    text-decoration: none;
    font-size: 14px;
    border-bottom: dashed 1px #583A06;
}
#popup_ok {
    padding: 4px;
    font-size: 16px;
    cursor: pointer;
    margin-right: 7px;
}
