/*
 * Gritter for jQuery
 * http://www.boedesign.com/
 *
 * Copyright (c) 2012 Jordan Boesch
 * Dual licensed under the MIT and GPL licenses.
 *
 * Date:February 24, 2012
 * Version:1.7.4
 */
/* the norm */
#gritter-notice-wrapper {
    position:fixed;
    top:2px;
    right:2px;
    width:301px;
    z-index:9999;
}
#gritter-notice-wrapper.top-left {
    left:20px;
    right:auto;
}
#gritter-notice-wrapper.bottom-right {
    top:auto;
    left:auto;
    bottom:20px;
    right:20px;
}
#gritter-notice-wrapper.bottom-left {
    top:auto;
    right:auto;
    bottom:20px;
    left:20px;
}
.gritter-item-wrapper {
    -webkit-border-radius:0px;
    -khtml-border-radius:0px;
    -moz-border-radius:0px;
    -ms-border-radius:0px;
    -o-border-radius:0px;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    -moz-user-select: none; 
    -ms-user-select: none;
    user-select: none;
    border-radius:0px;
    background-clip:padding-box;
    background-color:rgba(10, 10, 10, 0.9);
    color:#fafafa;
    padding:2px;
    position:relative;
    margin:0 0 3px 0;
}
.gritter-item-wrapper:hover {
    border:2px solid rgb(255 204 0 / 1);
    padding:0;
}
.gritter-bottom {
    height:5px;
    margin:0;
}
.gritter-item {
    display:block;
    padding:10px 9px 6px 9px;
    font-size:11px;
    font-family:futuramedium;
}
.gritter-item p {
    padding:0;
    margin:0;
    word-wrap:break-word;
}
.gritter-close {
    -webkit-border-radius:0%;
    -khtml-border-radius:0%;
    -moz-border-radius:0%;
    -ms-border-radius: 0%;
    -o-border-radius:0%;
    border-radius:0%;
    background:black url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAIAQAAAADsdIMmAAAAAnRSTlMAAHaTzTgAAAAVSURBVHgBYzjM8JyhjsEGCOuArMMAJlAEyWWf1D4AAAAASUVORK5CYII=) no-repeat center;
    border:0px solid #fff;
    box-shadow:0 2px 5px rgba(0, 0, 0, 0.75);
    display:none;
    position:absolute;
    top:7px;
    right:7px;
    cursor:pointer;
    width:18px;
    height:18px;
    text-indent:-9999em;
    outline:none;
}
.gritter-item-wrapper:hover .gritter-close {
    display:block;
}
.gritter-title {
    color: rgb(255, 204, 0);
    font-size:12px;
    font-weight:bold;
    padding:0 0 7px 0;
    display:block;
    text-shadow:2px 2px 0 #161616;/* Not supported by IE :( */
}
.gritter-image {
    width:48px;
    height:48px;
    float:left;
}
.gritter-with-image,.gritter-without-image {
    padding:0;
}
.gritter-with-image {
    width:220px;
    float:right;
}
.gritter-clickable:hover {
    cursor:pointer;
}

/* for the light (white) version of the gritter notice */
.gritter-light.gritter-item-wrapper {
    background-color:rgb(10 10 10 / 100%);
    color:rgb(209, 209, 209);
}
.gritter-light.gritter-item-wrapper:hover {
    border-color:rgb(255 205 0 / 1);
}
/* for the success version of the gritter notice */
.gritter-success.gritter-item-wrapper {
    background-color:#DFF0D8;
    color:#468847;
}
.gritter-success.gritter-item-wrapper:hover {
    border-color:#D6E9C6;
}
/* for the info version of the gritter notice */
.gritter-info.gritter-item-wrapper{
    background-color:#D9EDF7;
    color:#3A87AD;
}
.gritter-info.gritter-item-wrapper:hover{
    border-color:#BCE8F1;
}
/* for the warning version of the gritter notice */
.gritter-warning.gritter-item-wrapper {
    background-color:#FCF8E3;
    color:#C09853;
}
.gritter-warning.gritter-item-wrapper:hover {
    border-color:#FBEED5;
}
/* for the error version of the gritter notice */
.gritter-error.gritter-item-wrapper{
    background-color:#F2DEDE;
    color:#B94A48;}
.gritter-error.gritter-item-wrapper:hover{
    border-color:#EED3D7;
}
/* for the red version of the gritter notice */
.gritter-red.gritter-item-wrapper{
    background-color:#F78B83;
    color:#912323;}
.gritter-red.gritter-item-wrapper:hover{
    border-color:#D95252;
}
/* for the yellow version of the gritter notice */
.gritter-yellow.gritter-item-wrapper{
    background-color:#FFFFA3;
    color:#555;
}
.gritter-yellow.gritter-item-wrapper:hover{
    border-color:#F1D031;
}
/* for the blue version of the gritter notice */
.gritter-blue.gritter-item-wrapper{
    background-color:#E5F6FE;
    color:#5E99BD;
}
.gritter-blue.gritter-item-wrapper:hover{
    border-color:#ADD9ED;
}
/* for the green version of the gritter notice */

.gritter-green.gritter-item-wrapper
{background-color:#CAED9E;
    color:#3F6219;
}
.gritter-green.gritter-item-wrapper:hover{
    border-color:#90D93F;
}
.gritter-light .gritter-title,
.gritter-success .gritter-title,
.gritter-info .gritter-title,
.gritter-warning .gritter-title,
.gritter-error .gritter-title,
.gritter-red .gritter-title,
.gritter-yellow .gritter-title,
.gritter-blue .gritter-title,
.gritter-green .gritter-title
{text-shadow:none;}