/* Notifications */
#noty_box{
	position: fixed;
	top: 12px;
	right: 12px;
	width: 412px;
	background: rgba( 255, 255, 255, 0.95 );
	border: 1px solid #BFBFBF;
	display: none;
	z-index: 99;
	
	-webkit-box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.3);
	-moz-box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.3);
	box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.3);

	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
#noty_box .noty_title{
	position: relative;
	font: normal 12px/18px Arial, sans-serif;
	color: #424242;
	padding: 9px 32px 9px 16px;
	border-bottom: 1px solid #BFBFBF;
	-webkit-border-radius: 5px 5px 0 0;
	-moz-border-radius: 5px 5px 0 0;
	border-radius: 5px 5px 0 0;
}
#noty_box .noty_title .noty_close{
	position: absolute;
	width: 15px;
	height: 15px;
	top: 50%;
	right: 8px;
	margin-top: -7px;
	background: url(../images/icon_close.png) no-repeat;
	cursor: pointer;
}
#noty_box .noty_title .noty_close:hover{
	opacity: 0.8;
}
#noty_box .noty_messages{
	padding: 2px 17px 5px;
	max-height: 256px;
	overflow-y: scroll;
	margin: 3px 0;
}
#noty_box .noty_item{
	background: url(../images/icon_checked.png) left center no-repeat;
	font: bold 12px/18px Arial, sans-serif;
	padding: 6px 0 6px 37px;
	min-height: 20px;
	position: relative;
	left: -14px;
	opacity: 1;
	height: auto;
	overflow: hidden;
}
#noty_box .noty_item.noty_hidden{
	height: 0;
	opacity: 0;
	padding: 0;
}
#noty_box .noty_item:nth-child(n+6):last-child{
	margin-bottom: 3px;
}
#noty_box .noty_item a{
	font: bold 12px/18px Arial, sans-serif;
	color: #376092;
}
#noty_box .noty_item a:before{
	content: '';
	display: block;
	padding-bottom: 4px;
}	
#noty_box .noty_item a:hover{
	text-decoration: none;
}