/* CORE STYLES */

/* noty bar */
.noty_bar {
	position: fixed;
	display: none;
	z-index: 9999999;
}

/* noty_message */
.noty_bar .noty_message {
	text-align: center;
}

/* noty close button */
.noty_bar .noty_close {
	cursor: pointer;
}

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

/* noty container for noty_layout_topLeft & noty_layout_topRight */
ul.noty_cont {
	position: fixed;
	z-index: 10000000;
	margin: 0px;
	padding: 0px;
	list-style: none;
	width: 300px;
}

ul.noty_cont li {
	position: relative;
	float: left;
	clear: both;
	list-style: none;
	padding: 0px;
	margin: 10px 0 0 0;
	width: 300px; /* Fix for: http://bugs.jquery.com/ticket/2278 */
}

ul.noty_cont.noty_layout_topLeft { left: 20px; top: 20px; }

ul.noty_cont.noty_layout_topRight { right: 40px; top: 20px; }

ul.noty_cont.noty_layout_bottomLeft { left: 20px; bottom: 20px }

ul.noty_cont.noty_layout_bottomRight { right: 40px; bottom: 20px }

ul.noty_cont.noty_layout_topRight li { float: right }

/* LAYOUTS */

/* noty_layout_top */
.noty_bar.noty_layout_top {
	top: 0;
	left: 0;
	width: 100%;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
}

/* noty_layout_bottom */
.noty_bar.noty_layout_bottom {
	bottom: 0;
	left: 0;
	width: 100%;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
}

/* noty_layout_center */
.noty_bar.noty_layout_center {
	top: 40%;
}

/* noty_layout_topLeft & noty_layout_topRight */
.noty_bar.noty_layout_topLeft,
.noty_bar.noty_layout_topRight,
.noty_bar.noty_layout_bottomLeft,
.noty_bar.noty_layout_bottomRight {
	width: 100%;
	clear: both;
	position: relative;
}

.noty_bar.noty_layout_topLeft .noty_message,
.noty_bar.noty_layout_topRight .noty_message,
.noty_bar.noty_layout_bottomLeft .noty_message,
.noty_bar.noty_layout_bottomRight .noty_message {
	text-align: left;
}

/* noty_layout_topCenter */
.noty_bar.noty_layout_topCenter {
	top: 20px;
}

/* CORE STYLES*/

/* noty bar */
.noty_bar.noty_theme_default { }

/* if you use noty with customContainer you can access noty with this way
   *	 .noty_custom_container noty will add automaticly this class to your customContainer
   *	 .noty_theme_default 		your theme
   *	 .noty_layout_inline		your layout
   */

/* custom container */
.noty_custom_container.noty_theme_default.noty_layout_inline {
	position: relative;
}

/* custom growl container */
.noty_custom_container.noty_theme_default.noty_layout_inline .noty_cont.noty_layout_inline {
	position: static;
}

/* custom noty bar */
.noty_custom_container.noty_theme_default.noty_layout_inline .noty_bar {
	border-width: 1px;
	border-style: solid;
	position: static;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.noty_custom_container.noty_theme_default.noty_layout_inline .noty_bar .noty_message {
	font-size: 13px;
	padding: 4px;
}

.noty_custom_container.noty_theme_default.noty_layout_inline .noty_bar .noty_message .noty_buttons {
	margin-top: -1px;
}

/* noty_message */
.noty_bar.noty_theme_default .noty_message {
	padding: 8px 14px;
	font-size: 13px;
	width: auto;
	color: #353535;
	text-align: left;
}

.noty_bar.noty_theme_default.noty_closable .noty_message {
	padding: 10px 18px;
}

/* noty_buttons */
.noty_bar.noty_theme_default .noty_message .noty_buttons {
	float: right;
	font-size: 13px;
	margin-top: -4px;
	margin-left: 4px;
}

/* noty_button */
.noty_bar.noty_theme_default .noty_message .noty_buttons button {
	margin-left: 5px;
}

.noty_bar.noty_theme_default.noty_alert .noty_message i,
.noty_bar.noty_theme_default.noty_notice .noty_message i,
.noty_bar.noty_theme_default.noty_error .noty_message i,
.noty_bar.noty_theme_default.noty_html4 .noty_message i {
	background: url("/static/images/bg/sprite.png") no-repeat scroll -40px -173px transparent;
	display: block;
	float: left;
	height: 28px;
	margin: 0 10px 0 0;
	width: 24px;
}

.noty_bar.noty_theme_default.noty_error .noty_message i {
	background: url("/static/images/icons/error.png") no-repeat scroll 0 0 transparent;
	width: 28px;
}

.noty_bar.noty_theme_default.noty_layout_top.noty_html4 .noty_message {
	max-width: 1000px;
}
.noty_bar.noty_theme_default.noty_layout_top.noty_html4 .noty_message i {
	background: url("/static/images/icons/html5.png") no-repeat scroll 0 0 transparent;
}
.noty_bar.noty_theme_default.noty_layout_top.noty_html4 .noty_message .noty_text {
	min-height: 20px;
}

.noty_bar.noty_theme_default .noty_message .noty_text {
	display: block;
	min-height: 28px;
	margin-top: 5px;
}

/* noty modal */
.noty_modal.noty_theme_default {
	opacity: 0.7;
}

/* LAYOUTS */

/* noty_layout_top */
.noty_bar.noty_theme_default.noty_layout_top {
	border-bottom: 1px solid #CCC;
	background: #FFF;
	box-shadow: 1px 1px 1px #AAA;
}

.noty_bar.noty_theme_default.noty_layout_top.noty_error,
.noty_bar.noty_theme_default.noty_layout_top.noty_html4 {
	border-bottom: 1px solid #ff5a38;
	background: #e42b00;
	box-shadow: 1px 1px 1px #6e1b00;
}

.noty_bar.noty_theme_default.noty_layout_top.noty_error .noty_text,
.noty_bar.noty_theme_default.noty_layout_top.noty_html4 .noty_text {
	color: #FFF;
}

.noty_bar.noty_theme_default.noty_layout_top .noty_message {
	max-width: 400px;
	margin: 0 auto;
}

/* noty_layout_bottom */
.noty_bar.noty_theme_default.noty_layout_bottom {
	border-top: 3px solid #eee;
}

.noty_bar.noty_theme_default.noty_layout_center .noty_close {
	top: 8px;
}

.noty_bar.noty_theme_default.noty_layout_center .noty_message .noty_buttons {
	margin-top: -2px
}

/* noty_layout_topLeft & noty_layout_topRight */
.noty_bar.noty_theme_default.noty_layout_center,
.noty_bar.noty_theme_default.noty_layout_topLeft,
.noty_bar.noty_theme_default.noty_layout_topRight,
.noty_bar.noty_theme_default.noty_layout_bottomLeft,
.noty_bar.noty_theme_default.noty_layout_bottomRight {
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.noty_bar.noty_theme_default.noty_layout_center .noty_message,
.noty_bar.noty_theme_default.noty_layout_topLeft .noty_message,
.noty_bar.noty_theme_default.noty_layout_topRight .noty_message,
.noty_bar.noty_theme_default.noty_layout_bottomLeft .noty_message,
.noty_bar.noty_theme_default.noty_layout_bottomRight .noty_message {
	font-size: 13px;
	font-weight: normal;
	color: #353535;
}

.noty_bar.noty_theme_default.noty_layout_topLeft .noty_message .noty_buttons,
.noty_bar.noty_theme_default.noty_layout_topRight .noty_message .noty_buttons,
.noty_bar.noty_theme_default.noty_layout_bottomLeft .noty_message .noty_buttons,
.noty_bar.noty_theme_default.noty_layout_bottomRight .noty_message .noty_buttons {
	float: none;
	border-top: 1px solid #CCCCCC;
	margin-left: 0;
	margin-top: 10px;
	padding-top: 10px;
	text-align: right;
}

/* noty_layout_topCenter */
.noty_bar.noty_theme_default.noty_layout_topCenter {
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.noty_bar.noty_theme_default.noty_layout_topCenter .noty_message {
	font-weight: normal;
	font-size: 13px;
}

.noty_bar.noty_theme_default.noty_layout_topCenter .noty_close {
	top: 50%;
	margin-top: -10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}

.noty_bar.noty_theme_default.noty_layout_topCenter.noty_success {
	border: 1px solid #50C24E;
}

.noty_bar.noty_theme_default.noty_layout_topCenter .noty_message .noty_buttons {
	margin-left: 15px;
	margin-top: 0px
}

/* NOTIFICATION TYPES */

.noty_bar.noty_theme_default.noty_alert,
.noty_bar.noty_theme_default.noty_notice,
.noty_bar.noty_theme_default.noty_error {
	background-color: #fff;
}

.noty_bar.noty_theme_default.noty_success {
	background-color: white;
	color: darkgreen;
	border-color: #50C24E;
}

/* noty_alert */
.noty_bar.noty_theme_default.noty_information {
	background-color: #57B7E2;
	border-color: #0B90C4;
	color: #fff;
}

.noty_bar .noty_title h2 {
	height: 27px;
	padding: 0 11px;
	color: #FFF;
	font-size: 13px;
	font-family: tahoma, arial, sans-serif;
	line-height: 27px;
	background: #65a9d6;
	font-weight: normal;
	border-radius: 5px 5px 0 0
}

.noty_bar.noty_error .noty_title h2 {
	background: #d14e30
}