.toast-container {
	width: 210px;
	z-index: 9999;
}


* html .toast-container {
	position: absolute;		
}
 
.toast-item {
	height: auto;
	padding: 15px;
	font-size: 12px;
        font-weight: bold;
	display: block;
	position: relative;
        border-radius: 2px;
        -moz-border-radius: 2px;
	-webkit-border-radius: 2px;
        box-shadow: 0 0 5px rgba(0,0,0,0.5);
        background: #f6f6f6;
}

.toast-item p {
    text-align: center;
    margin: 0;
}



.toast-item-image-notice {
    background:url(notice.png);
}

/*.toast-item-image-success {
    background:url(success.png);
    width: 24px;
    height: 19px;
    margin-top: 12px;
    
}*/

.toast-item-image-warning {
    background:url(warning.png);
    width: 20px;
    height: 20px;
    margin-top: 10px;
}

.toast-item-image-error {
    background:url(error.png);
}


.toast-type-notice {
    color: white;    
}

.toast-type-success {   
    /*background: #f6f6f6;*/
    background: #66d7e5;
    color: white;
}

.toast-type-warning {
    color: white;
    border-color: #FCBD57;
    background: #630000;
}

.toast-type-error {
    color: white;
    background: #dd6666;
}


.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: 110px;
    right: 15px;
}

.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%;
}
