/*
Document   : jquery.pnotify.default.css
Created on : Nov 23, 2009, 3:14:10 PM
Author     : Hunter Perrin
Version    : 1.2.2
Link       : http://pinesframework.org/pnotify/
Description:
	Default styling for Pines Notify jQuery plugin.
*/
/* -- Notice */
.jui-pnotify {
/*top: 25px;*/
top:0px !important;
right: 25px;
position: absolute;
height: auto;

overflow:hidden; /*margin-20px bug*/ /*custom*/

/* Ensures notices are above everything */
z-index: 9999;
}
/* Hides position: fixed from IE6 */
html > body .jui-pnotify {
position: fixed;
padding-top: 6px;

}
.jui-pnotify .jui-pnotify-shadow {
/*-webkit-box-shadow: 0px 2px 10px rgba(50, 50, 50, 0.5);
-moz-box-shadow: 0px 2px 10px rgba(50, 50, 50, 0.5);
box-shadow: 0px 2px 10px rgba(50, 50, 50, 0.5);*/
}
.jui-pnotify-container {
background-position: 0 0;
padding: .8em;
height: 100%;
margin: 0;
}
.jui-pnotify-sharp {
/*-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;*/
}
.jui-pnotify-closer, .jui-pnotify-sticker {
float: right;
margin-left: .2em;
}
.jui-pnotify-title {
display: block;
margin-bottom: .4em;
}
.jui-pnotify-text {
display: block;
}
.jui-pnotify-icon, .jui-pnotify-icon span {
display: block;
float: left;
margin-right: .2em;
}
/* -- History Pulldown */
.jui-pnotify-history-container {
position: absolute;
top: 0;
right: 18px;
width: 70px;
border-top: none;
padding: 0;
/*-webkit-border-top-left-radius: 0;
-moz-border-top-left-radius: 0;
border-top-left-radius: 0;
-webkit-border-top-right-radius: 0;
-moz-border-top-right-radius: 0;
border-top-right-radius: 0;*/
/* Ensures history container is above notices. */
z-index: 10000;
}
.jui-pnotify-history-container .jui-pnotify-history-header {
padding: 2px;
}
.jui-pnotify-history-container button {
cursor: pointer;
display: block;
width: 100%;
}
.jui-pnotify-history-container .jui-pnotify-history-pulldown {
display: block;
margin: 0 auto;
}
/* Alternate stack initial positioning. */
.jui-pnotify.stack-topleft, .jui-pnotify.stack-bottomleft {
left: 25px;
right: auto;
}
.jui-pnotify.stack-bottomright, .jui-pnotify.stack-bottomleft {
bottom: 25px;
top: auto;
}