/* 
	Document   : jquery.pnotify.default.css
	Created on : Nov 23, 2009, 3:14:10 PM
	Author     : Hunter Perrin
	Description:
		Default styling for Pines Notify jQuery plugin.
*/

/* Notice
----------------------------------*/
.ui-pnotify {
	/*top: 18px;*/
	right: 18px;
	position: absolute;
	/*height: auto;*/
	/* Ensure that the notices are on top of everything else. */
	z-index: 9999;
	/*float:left;*/
}
/* This hides position: fixed from IE6, which doesn't understand it. */
html > body .ui-pnotify {
	position: fixed;
}
.ui-pnotify .ui-pnotify-shadow {
	margin: 0;
	position: absolute;
	top: .1em;
	left: .1em;
	bottom: -.1em;
	right: -.1em;
	z-index: -1;
}

.ui-widget-shadow{
	background: #AAA;
/*	border-bottom-left-radius: 8px 8px;
	border-bottom-right-radius: 8px 8px;
	border-top-left-radius: 8px 8px;
	border-top-right-radius: 8px 8px;*/
	margin: -3px 0px 0px -3px;
	opacity: 0.3;
	filter: 				alpha(opacity = 30);
	/*padding: 3px;*/
}
.ui-pnotify-container {
	/*background-position: 0 0;*/
	padding: 10px;
	/*height: auto;*/
	background: url(../design/jNotice/background.png);
	opacity: 				.90;
	filter: 				alpha(opacity = 90);
	float:left;
	width:290px;
}
.ui-pnotify-closer {
	float: right;
	margin-left: 5px;
	width:10px;
}
.ui-icon-circle-close{
	background:url(../design/jNotice/close.png) 0 0 no-repeat;
}
.ui-pnotify-title {
	display: block;
	font-size: 1.2em;
	font-weight: bold;
	margin-bottom: .4em;
}
.ui-pnotify-text {
	display: block;
	float:left;
	width:275px;
}
.ui-pnotify-icon, .ui-pnotify-icon span {
	display: block;
	float: left;
	margin-right: .2em;
}
/* History Pulldown
----------------------------------*/
.ui-pnotify-history-container {
	position: absolute;
	top: 0;
	right: 18px;
	width: 70px;
	border-top: none;
	/* Ensure that the history container is on top of the notices. */
	z-index: 10000;
}
.ui-pnotify-history-container .ui-pnotify-history-header {
	padding: 2px;
}
.ui-pnotify-history-container button {
	cursor: pointer;
	display: block;
	width: 100%;

	color: #555;
	font-weight: normal;
}
.ui-pnotify-history-container .ui-pnotify-history-pulldown {
	display: block;
	margin: 0 auto;
	
	background-image: url(../design/jNotice/pull.png);
	height: 6px;
	width: 14px;
	background-repeat: no-repeat;
	display: block;
	overflow: hidden;
	text-indent: -99999px;

}

div.messageNotice
{
	padding:5px;
	padding-left:35px;
	font-weight:bold;
	color: #E4E4E4;
	min-height:32px;
	width:235px;
	height:auto;
	float:left;
	opacity: 				.90;
	filter: 				alpha(opacity = 90);
	font-family:Verdana, Geneva, sans-serif;
}
div.successNotice
{
	background: url(../design/jNotice/icon-success.png) no-repeat 0px 5px;
}
div.errorNotice
{
	background: url(../design/jNotice/icon-error.png) no-repeat 0px 5px;
}
div.alertNotice
{
	background: url(../design/jNotice/icon-alert.png) no-repeat 0px 5px;
}
div.infoNotice
{
	background: url(../design/jNotice/icon-info.png) no-repeat 0px 5px;
}
div.noticeErrorContainer
{
	float:left;
	padding-bottom:10px;
}


/* Alternate stack initial positioning. */
.ui-pnotify.stack-topleft {
	top: 15px;
	left: 15px;
	right: auto;
}
.ui-pnotify.stack-bottomleft {
	bottom: 15px;
	left: 15px;
	top: auto;
	right: auto;
}
/* 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;
}
.ui-pnotify.stack-custom {
	top: 20%;
	left: 20%;
	right: auto;
}
.ui-pnotify.stack-custom2 {
	top: auto;
	left: auto;
	bottom: 20%;
	right: 20%;
}
