/*--------------- NOTIFY ----------------*/
.notify-wrapper
{
    position: absolute;
	z-index: 99999;
}

.notify-message
{
    position: absolute;
    padding: 10px;
    font-family: Arial;
    font-weight: bold;
    font-size: 11px;
    text-shadow: 0px 1px 0px rgba(0,0,0,0.2);
    display: none;
    box-shadow: 1px 1px 1px rgba(0,0,0,0.1);
    white-space: nowrap;
    overflow: hidden;
}

.notify-arrow
{
    position: absolute;
    display: none;
    width: 0;
    height: 0;
}

#center_notify_container
{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 10000;
}

#center_notify_container .notify-wrapper
{
	position: relative;
	float: left;
	clear: both;
	width: 100%;
}

#center_notify_container .notify-message
{
	position: relative;
	float: left;
	width: 100%;
	text-align: center;
	white-space: pre-line;
}
/*--------------- //NOTIFY ----------------*/