﻿#popup_container {
	/* navegadores sin gradients */
	background: #f8f8f8;
	/* moz */
	background: -moz-linear-gradient(top, #f8f8f8 0%, #F8F8F8 50%);
	/* webkit */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#F8F8F8), color-stop(50%,#F8F8F8));
	/* opera 11.10+ */
	background: -o-linear-gradient(#f8f8f8, #F8F8F8);
	
	color:#000;
	border-radius:6px;
	-moz-border-radius:6px;
	
	font-size: 14px;
	min-width: 300px; /* Dialog will be no smaller than this */
	max-width: 600px; /* Dialog will wrap after this width */
}

#popup_title {
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	line-height: 1.75em;
	color: #000;
	/*background: #CCC url(../../js/jquery.alerts-1.1/images/title.gif) top repeat-x;
	border: solid 1px #FFF;
	border-bottom: solid 1px #999;*/
	cursor: default;
	padding: 0em;
	margin: 0em;
}

#popup_content {
	background: 16px 16px no-repeat url(../../../js/jquery.alerts-1.1/images/info.png);
	padding: 1.5em 1.75em;
	margin: 0em;
}

#popup_content.alert {
	background-image: url(../../../js/jquery.alerts-1.1/images/info.png);
}

#popup_content.confirm {
	background-image: url(../../../js/jquery.alerts-1.1/images/important.png);
}

#popup_content.prompt {
	background-image: url(../../../js/jquery.alerts-1.1/images/help.png);
}

#popup_message {
	padding-left: 48px;
}

#popup_panel {
	text-align: center;
	margin: 1em 0em 0em 1em;
}

#popup_prompt {
	margin: .5em 0em;
}