/* the norm */
#gritter-notice-wrapper {
	position:fixed;
	top:60px;
	right:5px;
	width:301px;
	z-index:9999;
}
#gritter-notice-wrapper.top-left {
	left: 20px;
	right: auto;
}
#gritter-notice-wrapper.bottom-right {
	top: auto;
	left: auto;
	bottom: 20px;
	right: 20px;
}
#gritter-notice-wrapper.bottom-left {
	top: auto;
	right: auto;
	bottom: 20px;
	left: 20px;
}

.gritter-item {
	position:relative;
	margin:0 0 10px 0;
	border-radius: 5px;
	/* Clips children's background with the rounded corners */
	overflow: hidden;
	border: 1px solid #222;
	border-color: rgba(35,35,35, 0.9);

	display:block;
	color:#eee;
}
.gritter-title {
	display:block;
	background-color: #444444;
	background-color: rgba(65,65,65, 0.9);
	border-top: 1px solid #666;
	border-top-color: rgba(255,255,255, 0.4);


	font-size:14px;
	font-weight:bold;
	text-shadow:0 1px 3px rgba(0,0,0, 0.6);
	padding:4px 40px 4px 15px;
}
.gritter-body {
	background-color: #000;
	background-color: rgba(0,0,0, 0.9);
	padding:2px 15px 8px;
	margin:0;
	word-wrap:break-word;
	font-size: 11px;
	line-height: 1.8;
}
.gritter-close {
	position:absolute;
	border-radius: 5px;
	top:0;
	right:0;
	background: url(../images/notification-close.png) no-repeat center;
	background-size: 17px 18px;
	cursor:pointer;
	width:40px;
	height:32px;
}
