.notifyMeNotification-container
{
	position:relative;
	background-color:#FFEB3B;
	color:fff;
	padding-left:10px;
	padding-right:30px;
	padding-top:4px;
	padding-bottom:4px;
	margin-top:10px;
	margin-bottom:1px;
	margin-left:auto;
	margin-right:auto;
	border-radius: 5px;
	border:1px solid #E6E6E6;
	opacity:0;
	/*width:auto;*/
	display:block;
	max-width:80%;
	
	/* Disable User Selection */
	user-select: none; 
	-o-user-select: none; 
	-moz-user-select: none; 
	-khtml-user-select: none; 
	-webkit-user-select: none; 
}

.notifyMeNotification-container .notifyMeClose
{
	position:absolute;
	right:4px;
	top:1px;
	font-size:20px;
	color:#fff;
}

.notifyMeNotification-container .notifyMeClose:hover
{
	cursor:pointer;
}

.entryAnimation
{
	animation-name: fadeIn;
    animation-duration: 0.3s;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
}

.exitAnimation
{
	animation-name: fadeOut;
    animation-duration: 0.1s;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
}

/* Animation Class */
@keyframes fadeOut
{
	from {
		opacity:1;
	}
	to {
		opacity:0;
	}
}

@keyframes fadeIn
{
	from {
		opacity:0;
	}
	to {
		opacity:1;
	}
}