/* jQuery Growl
 * Copyright 2015 Kevin Sylvestre
 * 1.3.2
 */
#growls {
  z-index: 50000;
  position: fixed; }
  #growls.default {
    top: 3px;
    right: 3px; 
    /* top: 10px;
	right: 10px;  */
	}
  #growls.tl {
    /* top: 10px; */
    top: 3px;
    left: 10px; }
  #growls.tr {
    top: 5px;
    right: 3px; 
    /* top: 10px;right: 10px;  */
	}
  #growls.bl {
    bottom: 10px;
    left: 10px; }
  #growls.br {
    bottom: 10px;
    right: 3px; 
    /* right: 10px;  */
	}
  #growls.tc {
    top: 3px;
    right: 3px;
    left: 10px; 
	/* top: 10px;
	right: 10px; */
	}
  #growls.bc {
    bottom: 10px;
    right: 3px;
    left: 10px;
/* right: 10px;	 */
	}
  #growls.tc .growl, #growls.bc .growl {
    margin-left: auto;
    margin-right: auto; }

.growl {
  /* opacity: 0.8; */
  opacity: 1;
  filter: alpha(opacity=80);
  position: relative;
  border-radius: 4px;
  -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: 250px;
    padding: 10px;
    margin: 10px; }
  .growl.growl-large {
    width: 300px;
    padding: 15px;
    margin: 15px; }
  .growl.growl-default {
    color: #FFF;
    background: #7f8c8d; }
  .growl.growl-error {
    color: #FFF;
    background: #C0392B; }
  .growl.growl-notice {
    color: #FFF;
    background: #2ECC71; 
}
  .growl.growl-warning {
    color: #FFF;
    background: #F39C12; 
}
  .growl .growl-close {
    cursor: pointer;
    float: right;
    font-size: 14px;
    line-height: 18px;
    font-weight: normal;
    font-family: helvetica, verdana, sans-serif; }
  .growl .growl-title {
    font-size: 18px;
    line-height: 24px; }
  .growl .growl-message {
    font-size: 14px;
    line-height: 18px; }

	#growl {
  position: absolute;
  bottom: 10px;
  right: 10px;
  overflow: hidden;
  /* right: 20px; */
}