#alertDIV{
	width: 100%;
	height: 35px;
	z-index:1051;
    position:fixed;
    top:0;
	text-align:center;
	opacity: 0.7;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}

#alertDIV:hover{
	opacity: 0.9;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}

#content{
	color:white;
	margin-top:2px;
	font-size:20px;
}

#text{
	margin-left:10px;
}

#close{
	cursor:pointer;
	font-size:20px;
	float:right;
	margin-right:30px;
}