/*
Document   : jquery.pnotify.default.css
Created on : Nov 23, 2009, 3:14:10 PM
Author     : Hunter Perrin
Version    : 1.2.0
Link       : http://pinesframework.org/pnotify/
Description:
	Default styling for Pines Notify jQuery plugin.
*/
/* -- Notice */
.ui-pnotify {
    top: 25px;
    right: 25px;
    position: absolute;
    height: auto;
    /* Ensures notices are above everything */
    z-index: 9999;
    /* Sets notify container styles for Changepoint. */
    max-width: 300px;
    width: unset !important;
}
/* Hides position: fixed from IE6 */
html > body .ui-pnotify {
position: fixed;
}
.ui-pnotify .ui-pnotify-shadow {
    /* Sets notify container shadow styles for Changepoint. */
    -webkit-box-shadow: 0px 1px 3px rgba(34, 31, 32, 0.48);
    -moz-box-shadow: 0px 1px 3px rgba(34, 31, 32, 0.48);
    box-shadow: 0px 1px 3px rgba(34, 31, 32, 0.48);
}
.ui-pnotify-container {
    background-position: 0 0;
    padding: .8em;
    height: 100%;
    margin: 0;
    /* Sets notify container shadow styles for Changepoint. */
    border-radius: 5px;
    border-width: 1px;
}
.ui-pnotify-sharp {
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
}
.ui-pnotify-closer, .ui-pnotify-sticker {
float: right;
margin-left: .2em;
}
.ui-pnotify-title {
display: block;
margin-bottom: .4em;
}
.ui-pnotify-text {
    /* Sets notify text styles for Changepoint. */
    color: #221f20;
    display: inline;
    font-size: 1em;
}
.ui-pnotify-icon, .ui-pnotify-icon span {
display: block;
float: left;
margin-right: .2em;
}
/* -- History Pulldown */
.ui-pnotify-history-container {
    display:none;  /*modification for Changepoint to hide history*/
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;
}
.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;
}
.ui-pnotify.stack-bottomright {
	/* These are just CSS default values to reset the pnotify CSS. */
	right: auto;
	top: auto;
}
.alert {
    /* Sets notify text styles for Changepoint. */
    text-shadow: none;
}
.alert-error {
    /* Sets notify-error styles for Changepoint. */
    background-color: #f5cdce;
    border-color: rgba(224, 9, 13, 0.24);
}
.alert-info {
    /* Sets notify-info styles for Changepoint. */
    background-color: #e4eefa;
    border-color: #b4bbd7;
}
.alert-success {
    /* Sets notify-success styles for Changepoint. */
    background-color: #d3e8e6;
    border-color: rgba(72, 185, 129, 0.24);
}
.alert-warn {
    /* Sets notify-warn styles for Changepoint. */
    background-color: #fbdbc3;
    border-color: #fcb076;
}