/**
 * Folha de Estilo - Alert
 * -------------------------------------------------------------------------------------------
 * @author Claudio Monteoliva
 * @version 1.0
 * @copyright 2015
 */
/* Fonte Texto */
@font-face { font-family: fontalert; src: url("../fontes/HelveticaNeueLTStd-CnO.otf"); } 

.alertaFundo {
	position: fixed;
	top: 0;
	left: 0;
	margin: 0;
	width: 100%;
	height: 200%;
	background-color: rgba(0, 0, 0, 0.80);
	z-index: 99999888;
}

.alerta {
	position: fixed;
	width: 260px;
	height: 120px;
	line-height: 150px;
	background-color: #fff;
	padding: 10px;
	border: 1px solid #DADADA;
	z-index: 999999888;
	display: none;
	clear: both;
	-webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}
.alerta img {
	position: absolute;
	top: -15px;
	right: -15px;
	margin: 0;
	border: none;
	cursor: pointer;
	float: right;
	z-index: 999999999;
}
.alerta p { font: normal 11pt fontalert; color: #666; text-align: center; }