.acgAlertOverlay
{
	position:fixed;
	z-index:999999;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background-color:rgba(0,0,0,0.5);
}

.acgAlertModal
{
	jposition:absolute;
	position:fixed;
	z-index:999999;
	
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box; 
	box-sizing: border-box;
	
	overflow:auto;	/* If hidden is used, no scrollbars appear */
	joverflow-y:auto;	/* 7/5/2018: Added */
	jmin-height:100px;
	jmax-height:100%;	/* 10/1/2019: Setting max-height prevents dialog box from going below browser, but will cause dialogs that are "too big" to get cutoff. So, why would we want this? */
	padding:10px;

	background-color:#017dc7;
	border-radius:0;
	jbox-shadow: 2px 2px 0px rgba(0,0,0,0.5);
}

.acgAlertDefaultPreTransition
{
	opacity:0;
	transform:scale(0.5) translate(0px, 0px);
	
	transition: opacity .4s cubic-bezier(.25,.8,.25,1), transform .4s cubic-bezier(.25,.8,.25,1);
}

.acgAlertDefaultPostTransition
{
	opacity:1 !important;
	transform: translate(0,0) scale(1) !important;
	
	transition: opacity .4s cubic-bezier(.25,.8,.25,1), transform .4s cubic-bezier(.25,.8,.25,1);
}

.acgAlertLayout
{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box; 
	box-sizing: border-box;	
}

.acgAlertHeader
{
	text-align:center;

	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box; 
	box-sizing: border-box;	
}

.acgAlertContent
{
	padding:1.6em 1.4em;
	overflow-y:auto;
	jbackground-color:#ffffff;
	box-sizing:border-box;	/* 7/5/2018: Added */
}

.acgAlertFooter
{
	margin-top:0.5em;
	margin-bottom:0.5em;
	text-align:center;
}

.acgAlertClose
{
	position:absolute;
	background:url(close.png) 0 0 no-repeat;
	width:24px;
	height:27px;
	display:block;
	top:-7px;
	right:-7px;
}

/*
.acgAlertButton
{
	display:inline-block;
	color:#ffffff;
	;padding:0.1em 1em 0.3em 1em;
	padding:0.2em 1em 0.3em 1em;
	min-width:100px;
	
	box-sizing: border-box;
	
	border-radius:0;
	
	font-size:1em;
	text-align:center;
	
	cursor:hand;
	cursor:pointer;
	
	text-decoration:none;
	
	background-color:#26abe3;
		
	box-shadow: 2px 2px 0px rgba(0,0,0,0.5);	
}

.acgAlertButton:hover
{
	background-color:#17426b;
	text-decoration:none;
}
*/
.acgAlertFocusHelper, .acgAlertFocusHelper:focus
{
	height:0;
	outline:none;
}