ul.noty_container {
	position: fixed;
	z-index: 9999999;
	margin: 0px;
	padding: 0px;
	list-style: none;
	width: 300px;
	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 {
	width: 300px;
}

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

.noty_bar {
	position: fixed;
	display: none;
	z-index: 9999999;
	background: url(../img/alert-lines.png) repeat-x scroll left top #fff;
	-moz-box-shadow: 0px 20px 15px #000;
	-webkit-box-shadow: 0px 20px 15px #000;
	box-shadow: 0px 5px 5px #ccc;
}
.noty_bar.top {
	top: 20px;
	left: 20px;
	width: 300px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	border: 1px solid #ddd;
	padding: 4px;
	box-shadow: #DDDDDD 0px 0px 6px 0px;
}
.noty_bar.bottom {
	bottom: 20px;
	left: 20px;
	width: 300px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	border: 1px solid #ddd;
	padding: 4px;
	box-shadow: #DDDDDD 0px 0px 6px 0px;
}
.noty_bar.bottomRight {
	bottom: 20px;
	right: 20px;
	width: 300px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	border: 1px solid #ddd;
	padding: 4px;
	box-shadow: #DDDDDD 0px 0px 6px 0px;
}
.noty_bar.center {
	top: 40%;
	left: 40%;
	width: 300px;
	padding: 4px;
	border: 1px solid #ddd;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	box-shadow: #DDDDDD 0px 0px 6px 0px;
}
.noty_bar.topLeft, .noty_bar.topRight {
	width: 100%;
	clear:both;
	position: relative;
	padding: 4px;
	border: 1px solid #ddd;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
    box-shadow: #DDDDDD 0px 0px 6px 0px;
}
.noty_bar .noty_message {
	padding: 10px;
	font-size: 16px;
	font-weight: bold;
}

.noty_bar .noty_message .noty_buttons {
	font-size: 13px;
	margin-top: 5px;
}

.noty_buttons .button{
	border-style:none;
	margin:5px;
	padding:9px;
	border-radius:4px;
	font-weight:bold;
	color:#FFFFFF;
	cursor: pointer;
}

.noty_buttons .button.green{
	background: #33BD00;
}

.noty_buttons .button.pink{
	background: #E95668;
}

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

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

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

.noty_bar.success {
	background-color: lightgreen;
	color: darkgreen;
	border-color: darkgreen;
}