/* 
	Document   : jquery.pnotify.default.css
	Created on : Nov 23, 2009, 3:14:10 PM
	Author     : Hunter Perrin
	Version    : 1.0.0
	Description:
		Default styling for Pines Notify jQuery plugin.
*/

/* Notice
----------------------------------*/
.ui-pnotify {
    font-family: 'CapsuulaRegular';
	font-size: 16px;
	top: 18px;
	right: 18px;
	position: absolute;
	height: auto;
	/* Ensure that the notices are on top of everything else. */
	z-index: 99999;
}
/* This hides position: fixed from IE6, which doesn't understand it. */
html > body .ui-pnotify {
	position: fixed;
}

.ui-pnotify .ui-widget
{
 	font-size: 90% !important;	
}
.ui-pnotify .ui-pnotify-shadow {
	margin: 0;
	position: absolute;
	top: .1em;
	left: .1em;
	bottom: -.2em;
	right: -.2em;
	z-index: -1;
}
.ui-pnotify-container {
	background-position: 0 0;
	padding: 8px 15px 5px 15px;
	height: 100%;
    background-color: #FFC600;
    border-radius: 4px;
    -moz-border-radius: 4px;
}
.ui-pnotify-closer {
	float: right;
	margin-left: .2em;
}
.ui-pnotify-title {
	display: block;
	font-size: 1.2em;
	font-weight: normal;
}
.ui-pnotify-text {
	display: block;
	font-size: 1em;
}
.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%;
}
.ui-pnotify-history-container .ui-pnotify-history-pulldown {
	display: block;
	margin: 0 auto;
}

/* Custom styled notice CSS */
.ui-pnotify.custom {
	font-family: 'Palatino Linotype','Book Antiqua',Palatino,serif;
	font-size: .92em;
	font-weight: bold;
	text-shadow: 1px 1px 0.5px black;
}
.ui-pnotify.custom .ui-pnotify-container {
	background-color: red;
	background-image: none;
	border: none;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
}
.ui-pnotify.custom .ui-pnotify-title {
	font-size: 15pt;
	color: #FFF;
}
.ui-pnotify.custom .ui-pnotify-text {
	font-size: 11pt;
	color: #FFF;
}
.ui-pnotify.custom .ui-pnotify-closer {
	position: absolute;
	bottom: 5px;
	right: 5px;
}
.ui-pnotify.custom .ui-pnotify-icon {
	float: right;
}
.ui-pnotify.custom .picon {
	margin: 3px;
	width: 33px;
	height: 33px;
}

/* 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%;
}

/* 
	Document   : jquery.pnotify.default.icons.css
	Created on : Nov 24, 2009, 2:58:21 PM
	Author     : Hunter Perrin
	Version    : 1.0.0
	Description:
		Pines Icon styling for Pines Notify.
*/

.ui-pnotify .picon {
	background-color: transparent;
	background-repeat: no-repeat;
	background-position: center center;
	width: 17px;
	height: 17px;
}