/**
 * angular-growl - v0.3.0 - 2013-09-26
 * https://github.com/marcorinck/angular-growl
 * Copyright (c) 2013 Marco Rinck; Licensed MIT
 */
.growl
{
	position: fixed;
	top: 60px;
	right: 10px;
	float: right;
	width: 250px;
	z-index: 9999;
}

.growl-item.ng-enter,.growl-item.ng-leave
{
	-webkit-transition:.5s linear all;
	-moz-transition:.5s linear all;
	-o-transition:.5s linear all;
	transition:.5s linear all
}

.growl-item.ng-enter,.growl-item.ng-leave.ng-leave-active
{
	opacity: 0;
}

.growl-item.ng-leave,.growl-item.ng-enter.ng-enter-active
{
	opacity:1
}

/*
.growl {
    position: fixed;
    top: 10px;
    right: 10px;
    float: right;
    width: 250px;
    z-index: 9999;
}
.growl-item.ng-enter {
    -webkit-animation: bounceIn 0.5s;
    animation: bounceIn 0.5s;
}
.growl-item.ng-leave {
    -webkit-animation: bounceOut 0.5s;
    animation: bounceOut 0.5s;
}
.buttons {
    margin: 220px 4px;
}*/