#Popup_Container {
	font-family: Arial, sans-serif;
	font-size: 12px;
	min-width: 400px; /* Dialog will be no smaller than this */
	max-width: 600px; /* Dialog will wrap after this width */
	background: #FFF;
	border: solid 5px #525252;
	color: #000;
		
	border-radius: 5px;
    position: fixed;
    z-index: 20000010;
    padding: 0;
    margin: 0;
}

	#Popup_Container.LargeText {
		font-size: 20px;
	}


#Popup_ContentContainer {
	width: 100%;
}

#Popup_Overlay {
	position: fixed;
	z-index: 20000009;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
}

#Popup_Title {
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	line-height: 1.75em;
	color: #666;
	background: #CCC url('_Images/Alerts/title.gif') top repeat-x;
	border: none;
	border-bottom: solid 1px #999;
	cursor: default;
	padding: 0em;
	margin: 0em;
}

#Popup_Content {
	padding: 1em 1.75em;
	margin: 0em;
	display: flex;
}

#Popup_Icon {
	min-width: 48px;
	font-size: 36px;
}

#Popup_Message {
	text-align:center;
}

#Popup_Panel {
	text-align: center;
	margin-top: 1em;
}

#Popup_Prompt {
	margin: .5em 0em;
}

#Popup_HideSelect {
	z-index:19999999;
	position:fixed;
	top: 0;
	left: 0;
	background-color:#fff;
	border:none;
	opacity: 0;
	height:100%;
	width:100%;
}

* html #Popup_HideSelect { /* ie6 hack */
     position: absolute;
     height: expression(document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight : document.body.offsetHeight + 'px');
}