#popup_container {
	font-family:Arial, Helvetica, sans-serif;
	font-size: 12px;
	min-width: 300px; /* Dialog will be no smaller than this */
	max-width: 600px; /* Dialog will wrap after this width */
	background: #EEE;
	color: #333;
	font-weight:bold;
	-moz-border-radius:8px; -webkit-border-radius:8px; border-radius:8px;
	box-shadow:0px 0px 8px #333; -webkit-box-shadow: 0px 0px 8px #333 ; -moz-box-shadow: 0px 0px 8px #333;
}

#popup_ok{
	padding:2px 20px;
	color:#EAEAEA;
	font-size:12px;
	cursor:pointer;
	float:right;
	margin-right:25px;
	margin-bottom:15px;
	background:#222;
	border:1px solid #999;
}

#popup_cancel{
	padding:2px 20px;
	color:#EAEAEA;
	font-size:12px;
	cursor:pointer;
	float:right;
	margin-right:25px;
	margin-bottom:15px;
	background:#222;
	border:1px solid #999;
}

#popup_ok:hover{background:#333;}
#popup_cancel:hover{background:#333;}
#popup_ok:active{background:#666; color:#CCC;}
#popup_cancel:active{background:#666; color:#CCC;}
#popup_clear{clear:both;}

#tipo_alerta{
	width:24px;
	height:24px;
	float:left;
	margin-right:15px;
	margin-top:-4px;
}

#popup_mymessage{
	float:left;
	max-width:500px;
	padding-right:10px;
}

#popup_title {
	visibility:hidden;
}

#popup_content {
	color: #333;
}

#popup_message {
	color: #333;
	margin-top:-30px;
	padding:22px 15px 22px 35px;
	background: url(images/title.png) repeat-x;
	border-bottom:1px solid #DDD;
	text-align:left;
	position:relative;
	z-index:1;
	-moz-border-radius-topleft: 8px;
	-moz-border-radius-topright:8px;
	-moz-border-radius-bottomleft:0px;
	-moz-border-radius-bottomright:0px;
	-webkit-border-top-left-radius:8px;
	-webkit-border-top-right-radius:8px;
	-webkit-border-bottom-left-radius:0px;
	-webkit-border-bottom-right-radius:0px;
	border-top-left-radius:8px;
	border-top-right-radius:8px;
	border-bottom-left-radius:0px;
	border-bottom-right-radius:0px;
}

#popup_panel {
	text-align: center;
	color: #000;
	margin: 1em 0em 0em 1em;
}

#popup_prompt {
	color: #666;
	background:#EEE;
	padding:4px 6px;
	border:1px solid #F0F0F0;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius:3px;
    -moz-box-shadow:inset 1px 2px 4px #AAA;
    -webkit-box-shadow:inset 1px 2px 4px #AAA;
    box-shadow:inset 1px 2px 4px #AAA;
	font-size:11px;
}

#popup_prompt:focus{
	background:#F4F4F4; 
	-moz-box-shadow:inset 1px 2px 4px #BBB;
    -webkit-box-shadow:inset 1px 2px 4px #BBB;
    box-shadow:inset 1px 2px 4px #BBB;}