#popup_container {
	font-size: 14px;
	min-width: 300px; /* Dialog will be no smaller than this */
	max-width: 600px; /* Dialog will wrap after this width */
	border: solid 2px #FFF;
	color: #000;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}

#popup_title{
	font-size: 18px;
	font-weight: bold;
	text-align: center;
	line-height: 1.75em;
	color: #000;
	background: #EEE;
	border-bottom: solid 1px #000;
	cursor: default;
	padding: 0em;
	margin: 0em;
	padding: 5px 0;
}

#popup_content{
	background: #E1E1E1;
	padding: 1em 1.75em;
	margin: 0em;
	color: #000;
}
#popup_content input{
	display: table;
	font-size: 14px;
	color: #000;
	border: solid 1px #000;
	padding: 5px;
	text-transform: uppercase;
	background-color: #FFF;
	cursor: pointer;
	font-weight: bold;
	margin: 0 auto;
	display : block\9; /* IE8 */  
	*display : block; /* IE7 */
	width : 10%\9; /* IE8 */  
	*width : 10%; /* IE7 */
}

#popup_content.alert #popup_message {
	background: url('/imgs/picto.info.png') 0 0 no-repeat;
}

#popup_content.confirm #popup_message{
	background: url('/imgs/picto.important.png') 0 0 no-repeat;
}

#popup_content.prompt #popup_message{
	background: url('/imgs/picto.help.png') 0 0 no-repeat;
}

#popup_message {
	padding-left: 48px;
	min-height: 32px;
}

#popup_panel {
	text-align: center;
	margin: 1em 0em 0em 1em;
}