.toast-container {
	width: 300px;
	z-index: 999999;
	position: absolute;
	left: 0px;
	top: 0px;
}
.toast-item {
	width: 300px;
	height: auto;
	background: #B20000;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	color: #eee;
	padding: 20px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1em;
	line-height: 1.2em;
	font-weight: bold;
	border: none;
	display: block;
	position: absolute;
	margin: 0 0 12px 0;
	position: absolute;
	left: 75px;
	top: 70px;
}
.toast-item p {
	text-align: left;
	margin-left: 40px;
}
.toast-item-close {
	background: url(../images/close.png);
	width: 22px;
	height: 22px;
	position: absolute;
	top: 5px;
	right: 5px;
	cursor: pointer;
}
.toast-item-image {
	width: 32px;
	height: 32px;
	position: absolute;
	top: 20px;
	left: 20px;
}
.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 types
 *
 * pattern: toast-type-[value]
 * where 'value' is the real value of the plugin option 'type'
 *
 */
.toast-type-notice {
	color: white;
}
.toast-type-success {
	color: white;
}
.toast-type-warning {
	color: white;
	border-color: none;
}
.toast-type-error {
	color: white;
	border-color: none;
}
/**
 * positions
 *
 * pattern: toast-position-[value]
 * where 'value' is the real value of the plugin option 'position'
 *
 */
.toast-position-top-left {
	position: fixed;
	left: 50px;
	top: 50px;
}
.toast-position-top-center {
	position: fixed;
	top: 20px;
	left: 60px;
}
.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%;
	top: 50%;
}
.toast-position-middle-right {
	position: fixed;
	right: 20px;
	margin-left: -140px;
	margin-top: -40px;
	top: 50%;
}
