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

* html .toast-container {
	position: absolute;
}
 
.toast-item {
	height: auto;
	background: rgba(1,1,1,0.65) repeat;
	box-shadow: 1px 1px 4px rgba(1,1,1,0.4);
	opacity: 0.9;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	color: #eee;
	padding-top: 0px;
	padding-bottom: 20px;
	padding-left: 0px;
	padding-right: 6px;
	font-family: lucida Grande;
	font-size: 14px;
	border: 2px solid #999;
	display: block;
	position: relative;
	margin: 0;
    text-align: center;
    padding: 0 20px;
    margin: auto;
    justify-content: center;
    align-items: center;
	vertical-align: middle-left;
}

.toast-item p {
	position: relative;
	text-align: center;
	margin-right: 15px;
	transform: translate(-1%, 5%);
	padding-left: 41px;
}

.toast-item-close {
	background:url(../img/close.gif);
	width:22px;
	height:22px;
	position: absolute;
	top:7px;
	right:7px;
}

.toast-item-image {
	position: absolute;
	width:64px;
	height: 64px;
	vertical-align: middle-left;
	transform: translate(-1%, 7%);
	margin-left: 0;
}

.toast-item-image-notice {
	background:url(../img/notice.png);
	border-color: #7DAAE5;
}

.toast-item-image-success {
	background:url(../img/success.png);
	border-color: #5BA90F;
}

.toast-item-image-warning {
	background:url(../img/warning.png);
	border-color: #CF6500;
}

.toast-item-image-error {
	background:url(../img/error.png);
	border-color: #E01717;
}


/** 
 * toast types 
 * 
 * pattern: toast-type-[value]
 * where 'value' is the real value of the plugin option 'type'
 */
.toast-type-notice {
	color: white;
	border-color: #7DAAE5;
}

.toast-type-success {
	color: white;
	border-color: #5BA90F;
}

.toast-type-warning {
	color: white;
	border-color: #CF6500;
}

.toast-type-error {
	color: white;
	border-color: #E01717;
}

/** 
 * 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: 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%;
}
