/* jQuery Growl
 * Copyright 2013 Kevin Sylvestre
 * 1.1.8
 */
#growls {
  z-index: 999999999;
  position: fixed;
  width: 100%;
  -webkit-box-shadow: 0px 3px 5px 0px rgba(50, 50, 50, 0.50);
-moz-box-shadow: 0px 3px 5px 0px rgba(50, 50, 50, 0.50);
box-shadow: 0px 3px 5px 0px rgba(50, 50, 50, 0.50); }
  #growls.default {
    top: 0px;
    left: 0px; }
  #growls.tl {
    top: 0px;
    left: 0px; }
  #growls.tr {
    top: 0px;
    right: 0px; }
  #growls.bl {
    bottom: 0px;
    left: 0px; }
  #growls.br {
    bottom: 0px;
    right: 0px; }

.growl {
  opacity: 0.98;
  filter: alpha(opacity=98);
  position: relative;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out; }
  .growl.growl-incoming {
    opacity: 0;
    filter: alpha(opacity=0); }
  .growl.growl-outgoing {
    opacity: 0;
    filter: alpha(opacity=0); }
  .growl.growl-small {
    width: 200px;
    padding: 5px;
    margin: 5px; }
  .growl.growl-medium {
    width: 100%px;
    padding: 10px;
    margin: 0px; }
  .growl.growl-large {
    width: 300px;
    padding: 15px;
    margin: 15px; }
  .growl.growl-default {
    color: white;
    background: #7f8c8d; }
  .growl.growl-error {
    color: white;
    background: #c0392b; }
  .growl.growl-notice {
    color: white;
    background: #242830;
	background: rgba(0,0,0,0.75);
}
  .growl.growl-warning {
    color: white;
    background: #f39c12; }
  .growl .growl-close {
    cursor: pointer;
    float: right;
    font-size: 14px;
    line-height: 18px;
    font-weight: normal;
    display: none; }
  .growl .growl-title {
    font-size: 24px;
    line-height: 24px;
    text-align: center; }
  .growl .growl-message {
    font-size: 14px;
    line-height: 18px;
    text-align: center; }
