#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;
	color: #565F65;
	padding: 5px !important;
	text-align: center;
}

#popup_title {
	font-size: 16px;
    text-align: left;
    color: #3b3b3b;
    cursor: default;
    padding: 10px;
    margin: 0em;
    background: #CCC;
    border-bottom: 1px solid #d9d9d9;
}

#popup_content {
	background:url(../images/info.png) no-repeat;
	margin: 0;
}

#popup_content.alert {
	background-image: url(../images/info.gif);
	margin: 20px 10px;
}

#popup_content.confirm {
	background-image: url(../images/important.gif);
	margin: 20px 10px 20px 20px;
}

#popup_content.prompt {
	background-image: url(../images/help.gif);
}

#popup_message {
	padding:0 35px;
}

#popup_panel {
	text-align: center;
	margin: 10px 0;
}
#popup_panel input[type="button"]{
	margin:0 5px;
	padding: 5px;
    display: inline-block;
    color: #fff;
    background: #f19914;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 1.1;    
	}
#popup_prompt {
	margin: .5em 0em;
}
#popup_overlay{
	opacity: 0.5 !important;
	background: #000 !important;
	}
@media (max-width: 500px) {
	#popup_container{
		min-width:100% !important;
		max-width:100% !important;
		left:0 !important;
	}
	#popup_content.confirm,#popup_content.alert, #popup_content.prompt{
		background:none;
		margin: 10px 0;
		}
	#popup_message {
		padding:0 10px;
	}
}