/* `ALERT. Jquery Alerts
----------------------------------------------------------------------------------------------------*/
#popup_container {
	font-family: Arial, sans-serif;
	font-size: 12px;
	min-width: 480px; /* Dialog will be no smaller than this */
	max-width: 600px; /* Dialog will wrap after this width */	
	background: #333333;
	border: solid 5px #939393;
	color: #FFF;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius:  10px 10px 10px 10px;
}

#popup_title {
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	line-height: 1.75em;
	color: Yellow;
	background: url(../../images/alert/bg.png) top center no-repeat;
	border-bottom: solid 0px #999;
	cursor: default;
	padding: 0em;
	margin: 0em;
	border-radius: 5px 5px 0px 0px;
}

#popup_content {
	background: 16px 16px no-repeat url(../../images/alert/info.png);
	padding: 1em 1.75em;
	margin: 0em;
	border-radius: 0px 0px 10px 10px;
	border:none;
}

#popup_content.alert {
	/* background-image: url(../../images/alert/info.png); */
}

#popup_content.confirm {
	background-image: url(../../images/alert/important.png);
}

#popup_content.prompt {
	background-image: url(../../images/alert/help.png);
}

#popup_message {
	padding-left: 48px;
	color: #FFF;
	text-shadow: none;
	font-family: Segoe UI,Arial,sans-serif;
	margin-top: 11px;
	max-height: 500px;
	overflow: auto;
	
}

#popup_panel {
	text-align: center;
	margin: 1em 0em 0em 1em;
}

#popup_prompt {
	margin: .5em 0em;
}

#popup_ok {
    cursor: pointer;
	background-color: #eeeeee;
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #eeeeee), color-

stop(100%, #cccccc));
	background-image: -webkit-linear-gradient(top, #eeeeee, #cccccc);
	background-image: -moz-linear-gradient(top, #eeeeee, #cccccc);
	background-image: -ms-linear-gradient(top, #eeeeee, #cccccc);
	background-image: -o-linear-gradient(top, #eeeeee, #cccccc);
	background-image: linear-gradient(top, #eeeeee, #cccccc);
	border: 1px solid #ccc;
	border-bottom: 1px solid #bbb;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	color: #666;
	font: bold 10px "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Geneva, Verdana, sans-

serif;
	font-weight: normal;
	padding-top: 3px  !important;
	padding-right: 15px;
	padding-bottom: 3px !important;
	padding-left: 15px;
	text-align: center;
	text-shadow: 0 1px 0 #eee;
	box-shadow: 0 1px 0 #2A2A2A;
	margin: 20px 3px 10px 3px;
	}
	
#popup_cancel {
	background-color: #eeeeee;
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #eeeeee), color-

stop(100%, #cccccc));
	background-image: -webkit-linear-gradient(top, #eeeeee, #cccccc);
	background-image: -moz-linear-gradient(top, #eeeeee, #cccccc);
	background-image: -ms-linear-gradient(top, #eeeeee, #cccccc);
	background-image: -o-linear-gradient(top, #eeeeee, #cccccc);
	background-image: linear-gradient(top, #eeeeee, #cccccc);
	border: 1px solid #ccc;
	border-bottom: 1px solid #bbb;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	color: #666;
	font: bold 10px "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Geneva, Verdana, sans-

serif;
	font-weight: normal;
	padding-top: 3px  !important;
	padding-right: 15px;
	padding-bottom: 3px !important;
	padding-left: 15px;
	text-align: center;
	text-shadow: 0 1px 0 #eee;
	box-shadow: 0 1px 0 #2A2A2A;
	margin: 20px 3px 10px 3px;
	}

/* `ALERT. Jquery Alerts --- END
----------------------------------------------------------------------------------------------------*/