#notify {
    position: fixed;
    right: 50%;
    top: 50%;
    z-index: 999999;
}

#notify .notify-item {
    width: 20em;
    padding: 0.5em 0.75em;
    background: #ccc;/*rgba(0,0,0,0.75);*/
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    -moz-box-shadow: 0 0 10px rgba(0,0,0,0.25);
    -webkit-box-shadow: 0 0 10px rgba(0,0,0,0.25);
    box-shadow: 0 0 10px rgba(0,0,0,0.25);
    opacity: 0;
    filter: alpha(opacity=0);
}

#notify .notify-item.notify-active {
    opacity: 1;
    filter: alpha(opacity=100);
}

#notify .notify-item ~ .notify-item {
    margin: 1em 0 0 0;
}

#notify p {
    font-size: 1em;
    line-height: 1.25em;
    font-weight: 400;
    color: #fdfdfd;
}

#notify p a:hover {
    text-decoration: underline;
}




/* transitions */
#notify.notify-transition .notify-item {
    -webkit-transition-property: -webkit-transform, opacity;
    -moz-transition-property: -moz-transform, opacity;
    -ms-transition-property: -ms-transform, opacity;
    transition-property: transform, opacity;
    -webkit-transition-duration: 0.2s;
    -moz-transition-duration: 0.2s;
    -ms-transition-duration: 0.2s;
    transition-duration: 0.2s;
}