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


* html .toast-container {
	position: absolute;
}

.toast-item {
	height: auto;
	background: #333;
    	/*opacity: 0.9;*/
	border-radius: 4px;
	color: #eee;
	padding-top: 20px;
	padding-bottom: 20px;
	padding-left: 6px;
	padding-right: 36px;
	/*font-family: lucida Grande;*/
	font-size: 1.3em;
	/*border: 1px solid #fff;*/
	display: block;
	position: relative;
	margin: 0 0 12px 0;
}

.toast-item p {
	font-weight: 700;
    text-align: left;
    margin-left: 65px;
}

.toast-item-close {
	visibility: hidden;
    background:url(/res/img/close-24.png);
    width:24px;
    height:24px;
    position: absolute;
    top:7px;
    right:7px;
}

.toast-item-image {
    width:48px;
    height: 48px;
    position: absolute;
    top: 50%;
    margin-top: -25px;
    left: 10px;
}
.toast-container:hover .toast-item-close {
	visibility: visible;
}

.toast-item-image-notice {
    background:url(/res/img/info-48.png);
}

.toast-item-image-success {
    background:url(/res/img/success-48.png);
}

.toast-item-image-warning {
    background:url(/res/img/warning-48.png);
}

.toast-item-image-error {
    background:url(/res/img/error-48.png);
}


/**
 * toast types
 *
 * pattern: toast-type-[value]
 * where 'value' is the real value of the plugin option 'type'
 *
 */
.toast-type-notice, .toast-type-success, .toast-type-warning, .toast-type-error {
    color: white;
}

/**
 * positions
 *
 * pattern: toast-position-[value]
 * where 'value' is the real value of the plugin option 'position'
 *
 */
.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: 65px;*/
    /* adjusted to avoid CORE buttons */
    top: 105px;
    right: 40px;
}

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