.toast-container{width:280px;z-index:9999;}
* html .toast-container{position:absolute;}

.toast-item{
	height:auto;background:#ededed;
	color:#eee;padding-top:20px;padding-bottom:20px;padding-left:6px;padding-right:6px;font-family:Arial;
	font-size:12px;font-weight:bold;border:1px solid #7286B7;display:block;position:relative;margin:0 0 12px 0;

	moz-border-radius: 5px 5px 5px 5px;
    -webkit-border-radius: 5px 5px 5px 5px;
    -khtml-border-radius: 5px 5px 5px 5px;
    border-radius: 5px 5px 5px 5px;

    webkit-box-shadow: 1px 1px 2px #ccc; /* sombra para safari e chrome */
	-moz-box-shadow: 1px 1px 2px #ccc; /* sombra para firefox < 4.0 */
	box-shadow: 1px 1px 2px #ccc; /* sombra para motor html5 */

   
}
.toast-item p{text-align:left;margin-left:50px;margin-top:12px}
.toast-item-close{background:url(images/close.png);width:22px;height:22px;position:absolute;top:3px;right:3px;cursor:pointer;
moz-border-radius: 3px 3px 3px 3px;
    -webkit-border-radius: 3px 3px 3px 3px;
    -khtml-border-radius: 3px 3px 3px 3px;
    border-radius: 3px 3px 3px 3px;
}
.toast-item-close:hover{background-color: #ededed;}
.toast-item-image{width:32px;height:32px;margin-left:10px;margin-top:5px;margin-right:10px;float:left;}
.toast-item-image-notice{background:url(images/notice.png);}
.toast-item-image-success{background:url(images/success.png);}
.toast-item-image-warning{background:url(images/warning.png);}
.toast-item-image-error{background:url(images/error.png);}

.toast-type-notice{
	color:#1D6EBD;
	border-color:#1D6EBD;
	background-color:#e5f2ff;
	background: -moz-linear-gradient(top,  #f4f9ff 0%, #e5f2ff 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f4f9ff), color-stop(100%,#e5f2ff));
    background: -webkit-linear-gradient(top,  #f4f9ff 0%,#e5f2ff 100%);
    background: -o-linear-gradient(top,  #f4f9ff 0%,#e5f2ff 100%);
    background: -ms-linear-gradient(top,  #f4f9ff 0%,#e5f2ff 100%);
    background: linear-gradient(top,  #f4f9ff 0%,#e5f2ff 100%);    
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f4f9ff', endColorstr='#e5f2ff',GradientType=0 );
}


.toast-type-success{
	color:#5C901E;
	border-color:#5C901E;
	background-color:#f0ffdf;	
    background: -moz-linear-gradient(top,  #f0ffdf 0%, #e3ffc4 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f0ffdf), color-stop(100%,#e3ffc4));
    background: -webkit-linear-gradient(top,  #f0ffdf 0%,#e3ffc4 100%);
    background: -o-linear-gradient(top,  #f0ffdf 0%,#e3ffc4 100%);
    background: -ms-linear-gradient(top,  #f0ffdf 0%,#e3ffc4 100%);
    background: linear-gradient(top,  #f0ffdf 0%,#e3ffc4 100%);    
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f0ffdf', endColorstr='#e3ffc4',GradientType=0 );
}

.toast-type-warning{
	color:#eab600;
	border-color:#f2cd00;
	background-color:#ffffdc;
	background: -moz-linear-gradient(top,  #ffffea 0%, #ffffdc 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffea), color-stop(100%,#ffffdc));
    background: -webkit-linear-gradient(top,  #ffffea 0%,#ffffdc 100%);
    background: -o-linear-gradient(top,  #ffffea 0%,#ffffdc 100%);
    background: -ms-linear-gradient(top,  #ffffea 0%,#ffffdc 100%);
    background: linear-gradient(top,  #ffffea 0%,#ffffdc 100%);    
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffea', endColorstr='#ffffdc',GradientType=0 );
}

.toast-type-error{
	color:#d45959;
	border-color:#d45959;
	background-color:#ffeae7;
	background: -moz-linear-gradient(top,  #fff6f5 0%, #ffeae7 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fff6f5), color-stop(100%,#ffeae7));
    background: -webkit-linear-gradient(top,  #fff6f5 0%,#ffeae7 100%);
    background: -o-linear-gradient(top,  #fff6f5 0%,#ffeae7 100%);
    background: -ms-linear-gradient(top,  #fff6f5 0%,#ffeae7 100%);
    background: linear-gradient(top,  #fff6f5 0%,#ffeae7 100%);    
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fff6f5', endColorstr='#ffeae7',GradientType=0 );
}

.toast-position-top-left{position:fixed;left:20px;top:20px;}
.toast-position-top-center{position:fixed;top:20px;left:50%;margin-left:-140px;}
.toast-position-top-right{position:fixed;top:20px;right:20px;}
.toast-position-middle-left{position:fixed;left:20px;top:50%;margin-top:-40px;}
.toast-position-middle-center{position:fixed;left:50%;margin-left:-140px;margin-top:-40px;top:50%;}
.toast-position-middle-right{position:fixed;right:20px;margin-left:-140px;margin-top:-40px;top:50%;}