.toast-container {
	width: 400px;
	z-index: 12000;
}


* html .toast-container {
	
}

.toast-item {
	height: auto;
	background: #f7e6e6;
    opacity: 0.9;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	color: #fff;
	padding-top: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
	padding-right: 20px;
	font-size: 12px;
	display: block;
	position: relative;
}

.toast-item p {
    text-align: left;
    margin-left: 50px;
}

.toast-item-close {
    background:url(../images/toastmessage/close.png);
    width:12px;
    height:12px;
    position: absolute;
    top: 22px;
    right: 22px;
}

.toast-item-image {
    width:17px;
    height: 17px;
    position: absolute;
    top: 20px;
    left: 22px;
}

.toast-item-image-notice {
    background:url(../images/toastmessage/notice.jpg);
}

.toast-item-image-success {
    background:url(../images/toastmessage/success.jpg);
}

.toast-item-image-warning {
    background:url(../images/toastmessage/warning.jpg);
}

.toast-item-image-error {
    background:url(../images/toastmessage/error.jpg);
}


/**
 * toast types
 *
 * pattern: toast-type-[value]
 * where 'value' is the real value of the plugin option 'type'
 *
 */
.toast-type-notice {
	background:#44abbd;
    color: #fff;
}

.toast-type-success {
	background:#4ea14f; 
    color: #fff;
}

.toast-type-warning {
	background:#e38b2f;
    color: #fff;
    border-color: #FCBD57;
}

.toast-type-error {
	background:#d23340;
    color: #fff;
}

/**
 * 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: -150px;
}

.toast-position-top-right {
    position: fixed;
    top: 300px;
    left: 50%;
    margin-left: -200px;
}

.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%;
}
