div.alert_overlay{ 
	/* growing background image */
    background-image:url(/web/jquery/alerts/images/alert_m.png);    
    /* initially overlay is hidden */
    display:none;
    /* some padding to layout nested elements nicely  */
	padding:0px;
	/* dimensions after the growing animation finishes  */
	width:480px;
	height:155px;	
	margin-top:50px;
	
	border-radius:5px 5px 5px 5px;
	-webkit-border-top-left-radius:5px;
	-webkit-border-top-right-radius:5px;
	-moz-border-radius:5px 5px 5px 5px;
	z-index:999999;
	background-repeat: no-repeat;
	padding-right:10px;
	padding-left:10px;
} 

div.alert_overlay_XL{ 
	/* growing background image */
    background-image:url(/web/jquery/alerts/images/alert_xl.png);    
    /* initially overlay is hidden */
    display:none;
    /* some padding to layout nested elements nicely  */
	padding:0px;
	/* dimensions after the growing animation finishes  */
	width:600px;
	height:180px;	
	margin-top:50px;
	
	border-radius:5px 5px 5px 5px;
	-webkit-border-top-left-radius:5px;
	-webkit-border-top-right-radius:5px;
	-moz-border-radius:5px 5px 5px 5px;
	z-index:999999;
	background-repeat: no-repeat;
	padding-right:10px;
	padding-left:10px;
} 

/* close button positioned on upper right corner 
#alert_overlay .close {
	background-image:url(/web/images/close.png);
	position:absolute;
	right:10px;
	top:10px;
	cursor:pointer;
	height:32px;
	width:35px;
	z-index:999999;
	background-repeat: no-repeat;
}*/
.pop_error{
	background-image:url(images/error.png);
	background-repeat: no-repeat;
	height:60px;
	width:50px;
}

.pop_confirm{
	background-image:url(images/confirm.png);
	background-repeat: no-repeat;
	height:60px;
	width:50px;
}

.pop_ok{
	background-image:url(images/ok.png);
	background-repeat: no-repeat;
	height:60px;
	width:50px;
}

.pop_info{
	background-image:url(images/info.png);
	background-repeat: no-repeat;
	height:60px;
	width:50px;
}

#popup_title{
	font-weight: bold;
	font-size: 16px;
	padding-left:5px;
	padding-bottom:10px;
}
#popup_message{
	padding-left:8px;
}
#popup_button{
	padding-right:10px;
}
