#popup_container {
	font-size: 12px;
	min-width: 300px; /* Dialog will be no smaller than this */
	max-width: 600px; /* Dialog will wrap after this width */
    width:40%;
    height: 20%;
	background: #FFF;
	color: #000;
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
	border-radius: 20px;
    box-sizing: border-box;
    padding: 10px;
}

#popup_title {
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	line-height: 2.5em;
	color: #FFFFFF;
	background: #52a5cb;
	cursor: default;
	padding: 0em;
	margin: 0em;
}

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

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

#popup_content.confirm {
	background-image: url(../img/aleart/important.gif);
}

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

#popup_message {
	padding-left: 48px;
    font-size: 1.2em;
}

#popup_panel {
	text-align: center;
	margin: 1em 0em 0em 1em;
    position: absolute;
    bottom:20px;
    left: 0;
    width: 100%;
}

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


#popup_ok{
    border: none;
    background: #52a5cb;
    color: #FFFFFF;
    min-width: 80px !important;
    box-sizing: border-box;
    padding: 2px 10px;
    width: auto;
    height: 24px;
}

#popup_cancel{
    border: none;
    background: #a3a5a6;
    color: #FFFFFF;
    min-width: 80px !important;
    box-sizing: border-box;
    padding: 2px 10px;
    width: auto;
    height: 24px;
}