.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:hidden;

	padding:8px;

	background-color:#017dc7;
	border-radius:0;
	jbox-shadow: 2px 2px 0px rgba(0,0,0,0.5);
}


.acgAlertDefaultPreTransition
{
	opacity:0;
	jtransform:scale(0.5);
	transform:translate(0px, 0px) scale(1);
	
	jtransition: opacity .4s cubic-bezier(.25,.8,.25,1), transform .4s cubic-bezier(.25,.8,.25,1);
	transition: opacity .04s cubic-bezier(.25,.8,.25,1), transform .04s cubic-bezier(.25,.8,.25,1);
}

.acgAlertDefaultPostTransition
{
	opacity:1 !important;
	transform: translate(0px, 0px) scale(1) !important;
	
	jtransition: opacity .4s cubic-bezier(.25,.8,.25,1), transform .4s cubic-bezier(.25,.8,.25,1);
	transition: opacity .4s cubic-bezier(.25,.8,.25,1), transform .04s 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;
	box-sizing:border-box;
	jfont-size:2em;
	jfont-weight:bold;
	jpadding:0 0 0.25em 0;
	jcolor:#ffffff;
}

.acgAlertContent
{
	padding:1.6em 1.4em;
	overflow-y:auto;
	background-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;
}
*/

.acgAlertContentFixed
{
	box-sizing: border-box;
}
.acgAlertContentScrollable
{
	overflow:auto;
	box-sizing: border-box;
	jpadding-top:0.5em;
	padding:0.5em 1em;
	jpadding-bottom:0;
}