/* Custom styled notice CSS */
.ui-pnotify.custom .ui-pnotify-container {
	background-color: #404040 !important;
	background-image: none !important;
	border: none !important;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
}
.ui-pnotify.custom .ui-pnotify-title, .ui-pnotify.custom .ui-pnotify-text {
	font-family: Arial, Helvetica, sans-serif !important;
	text-shadow: 2px 2px 3px black !important;
	font-size: 10pt !important;
	color: #FFF !important;
	padding-left: 50px !important;
	line-height: 1 !important;
	text-rendering: geometricPrecision !important;
}
.ui-pnotify.custom .ui-pnotify-title {
	font-weight: bold;
}
.ui-pnotify.custom .ui-pnotify-icon {
	float: left;
}
.ui-pnotify.custom .picon {
	margin: 3px;
	width: 33px;
	height: 33px;
}

/* Alternate stack initial positioning. This one is done through code,
	to show how it is done. Look down at the stack_bottomright variable
	in the JavaScript below. */
.ui-pnotify.stack-bottomright {
	/* These are just CSS default values to reset the pnotify CSS. */
	right: auto;
	top: auto;
	left: auto;
	bottom: auto;
}
.ui-pnotify.stack-custom {
	/* Custom values have to be in pixels, because the code parses them. */
	top: 200px;
	left: 200px;
	right: auto;
}
.ui-pnotify.stack-custom2 {
	top: auto;
	left: auto;
	bottom: 200px;
	right: 200px;
}
/* This one is totally different. It stacks at the top and looks
	like a Microsoft-esque browser notice bar. */
.ui-pnotify.stack-bar-top {
	right: 0;
	top: 0;
}
.ui-pnotify.stack-bar-top > .alert {
	margin-bottom: 0px;
}
.ui-pnotify.stack-bar-bottom {
	margin-left: 15%;
	right: auto;
	bottom: 0;
	top: auto;
	left: auto;
}