.myAlertOverlay
{
	position:absolute;
	left:0px;
	top:0px;
	width:100%;
	height:100%;
	/*Comentado porque en visores chicos no ocupa todo el fondo*/
	/*background-color:#000;
	filter:alpha(opacity=60);
	-moz-opacity: 0.6;
	opacity: 0.6;*/
}
/*para centrar un elemento sin usar javascript la mejor solución es poner un div dentro de otro, y al de afuera darle un margen de 50% y al de adentro -50%. esto es para cuando el elemento tiene "position: absolute"*/
#myAlert{
	top:200px;
	position:absolute;
	right:50%;
}
.myAlert{
	position: relative;
	right: -50%;
	padding:25px;
	width:200px;
	min-height:75px;
	background-color:#FFF;
	border:3px solid #000;
    text-align:left;
}

.closeAlert {
	position:absolute;
	right:-10px;
	top:-10px;
	width:20px;
	height:20px;
	background-color:#000;
	background:url(close.gif) no-repeat top left;
	cursor:pointer;
}
