/*** alert ***/

/** borda superior **/
.alert {
	display:none;
	position:absolute;
	z-index:99;
	left:50%;
	width:500px;
	margin-left:-250px;
	color:#666;
	padding-top:11px;
}
.alertMsgSucesso {
	background:url(../img/home/alertbox/box-success-top.png) no-repeat left top;
}
.alertMsgErro {
	background:url(../img/home/alertbox/box-error-top.png) no-repeat left top;
}
.alertMsgAlert,
.alertMsgConfirm {
	background:url(../img/home/alertbox/box-alert-top.png) no-repeat left top;
}

/** borda inferior **/
.alert div.int {
	padding-bottom:11px;
	display:block;
	float:left;
	width:100%;
}
.alertMsgSucesso div.int {
	background:url(../img/home/alertbox/box-success-bot.png) no-repeat left bottom;
}
.alertMsgErro div.int {
	background:url(../img/home/alertbox/box-error-bot.png) no-repeat left bottom;
}
.alertMsgAlert div.int,
.alertMsgConfirm div.int {
	background:url(../img/home/alertbox/box-alert-bot.png) no-repeat left bottom;
}

/** borda lateral **/
.alert div.int div.contenedor {
	padding:0 20px;
}
.alertMsgSucesso div.int div.contenedor {
	background:url(../img/home/alertbox/box-success-pad.png) repeat-y left top;
}
.alertMsgErro div.int div.contenedor {
	background:url(../img/home/alertbox/box-error-pad.png) repeat-y left top;
}
.alertMsgAlert div.int div.contenedor,
.alertMsgConfirm div.int div.contenedor {
	background:url(../img/home/alertbox/box-alert-pad.png) repeat-y left top;
}

/** icones **/
.alert div.int div.contenedor div {
	padding:10px 0 35px 60px;
	min-height:50px;
}

.alertMsgSucesso div.contenedor div {
	background:url(../img/home/alertbox/icon-success.png) no-repeat left top;
}
.alertMsgErro div.contenedor div {
	background:url(../img/home/alertbox/icon-error.png) no-repeat left top;
}
.alertMsgAlert div.contenedor div,
.alertMsgConfirm div.contenedor div {
	background:url(../img/home/alertbox/icon-info.png) no-repeat left top;
}

.alert div.contenedor div .btFechar {
	position:absolute;
	left:50%;
	margin-left:-30px;
	bottom:10px;
	display:block;
	width:60px;
	height:24px;
	text-indent:-9999px;
}

.alertMsgAlert div.int div.contenedor div .btFechar,
.alertMsgConfirm div.int div.contenedor div .btFechar {
  background: url('../img/home/alertbox/bt-fechar-alert.png') top left no-repeat;
}
.alertMsgSucesso div.int div.contenedor div .btFechar {
  background: url('../img/home/alertbox/bt-fechar-success.png') top left no-repeat;
}
.alertMsgErro div.int div.contenedor div .btFechar {
  background: url('../img/home/alertbox/bt-fechar-error.png') top left no-repeat;
}

.alert div.contenedor div a { color:#666; }
