#popup_container {
	font-family: QuickSand, Arial, sans-serif;
	font-size: 14px;
	min-width: 300px; /* Dialog will be no smaller than this */
	max-width: 650px; /* Dialog will wrap after this width */
	background: #FFF;
	border: solid 5px #FFF;
	color: #000;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}

#popup_title{
	font-size: 1.3em;
	font-weight: 700;
	text-align: center;
	color: #FFF;
	background: var(--blue-color);
	border-bottom: solid 1px #AAA;
	cursor: default;
	padding: 10px 0;
	margin: 0em;
	font-family: QuickSand,Arial,sans-serif;
	-webkit-border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	border-radius: 5px;	
}

#popup_content {
	background: 16px 16px no-repeat url('/imgs/info.png');
	padding: 1.5em 1.75em;
	margin: 0em;
}

#popup_content.alert { background-image: url('/imgs/info.png'); }
#popup_content.confirm, .strErreur #popup_content.alert{ background-image: url('/imgs/important.png'); }
#popup_content.prompt { background-image: url('/imgs/help.png'); }
#popup_message { padding-left: 48px; font-size: 1.3em; color: #000; font-family: QuickSand,Arial,sans-serif; }
#popup_panel {
	text-align: center;
	margin: 1em 0em 0em 1em;
}
#popup_prompt { margin: .5em 0em; }
#popup_ok, #popup_cancel{	
	padding: 10px;
	background: var(--green-color);
	color: #FFF;
	margin: 20px auto 0 auto;
	display: table;
	text-transform: uppercase;
	font-weight: 600;
	text-align: center;
	display: inline-block;
	border: none;
	cursor: pointer;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	font-size: 1em;
}