ul.noty_container {
	position: fixed;
	z-index: 9999999;
	margin: 0px;
	padding: 0px;
	list-style: none;
	top: 20px;
}
ul.noty_container li {
	position: relative;
	float: left;
	clear: both;
	list-style: none;
	padding: 0px;
	margin: 10px 0 0 0;
}
ul.noty_container.topLeft {
	left: 20px;
}
ul.noty_container.topRight {
	right: 40px;
}
ul.noty_container.topRight li {
	float: right;
}

/* Fix for: http://bugs.jquery.com/ticket/2278 */
ul.noty_container.topLeft li, ul.noty_container.topRight li {
}

div.noty_modal {
	position: fixed;
	width: 100%;
	height: 100%;
	background-color: #000;
	z-index: 10000;
	opacity: 0.6;
	display: none;
	top: 0;
}

.noty_bar {
	position: fixed;
	display: none;
	z-index: 9999999;
	-moz-box-shadow: 0px 20px 15px #000;
	-webkit-box-shadow: 0px 20px 15px #000;
	box-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}
.noty_bar.top {
	top: 0;
	left: 0;
	width: 100%;
	padding: 7px 0;
	text-align: center;
}
.noty_bar.top .noty_message{
	display: inline-block;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}

.noty_bar.bottom {
	bottom: 0;
	left: 0;
	width: 100%;
	border-top: 3px solid #eee;
}
.noty_bar.center {
	top: 40%;
	left: 40.5%;
	padding: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}
.noty_bar.topLeft, .noty_bar.topRight {
	clear:both;
	position: relative;
	padding: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}
.noty_bar .noty_message {
	padding: 4px 8px;
	font-size: 14px;
}

.noty_bar .noty_message .noty_buttons {
	float: right;
	font-size: 13px;
	margin-top: -2px;
	margin-left: 10px;
}

.noty_bar .noty_message .noty_buttons button {
	margin-left: 5px;
}

.noty_bar .noty_close {
	position: absolute;
	top: -10px;
	right: -10px;
	background-image: url(/global4/gfx/noty-closelabel.png);
	width: 0px;
	height: 0px;
	cursor: pointer;
}

.noty_bar.alert {
	background-color: #333;
	color: #fff;
}

.noty_bar.error {
	background-color: #DA4F49;
	color: #fff;
	border-color: darkred;
}

.noty_bar.success {
	background-color: #5bb75b;
	color: #fff;
}
.noty_bar.confirm{
	background-color: #eee;
	color: #000;
}

.noty_bar.top{
	background: none;
	box-shadow: none;
}
.noty_bar.top.success .noty_message{
	background: #5BB75B;
}
.noty_bar.top.error .noty_message{
	background: #DA4F49;
}
.noty_bar.top.confirm .noty_message{
	background: #fff;
}
