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

.toast-hide_all-container
{
	display: none;
}
.toast-hide_all-block
{
	display: inline-block;
	float: right;
	position: relative;
	z-index: 100;
	margin: -19px -3px 5px 0px;
}

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

.toast-item {
	height: auto;
	background-color: #fffde4;
	background-image: url(/images/center/block_back.gif);
	background-repeat: repeat-x;
	color: #000;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 6px;
	padding-right: 6px;
	border: 1px solid #333333;
	display: block;
    position: absolute;
    right: 0px;
	margin: 0 0 12px 0;
	clear: both;
}

.toast-item p {
    text-align: left;
    margin-left: 40px;
}

.toast-item-close {
    background:url(/images/x.gif) no-repeat;
    width:22px;
    height:22px;
    position: absolute;
    top:7px;
    right:0;
	cursor: pointer;
}

.toast-item-image {
    width:32px;
    height: 32px;
    position: absolute;
    top: 50%;
    margin-top: -16px;
    left: 8px;
}

.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: #000;
    border-color: #333333;
}

.toast-type-success {
    color: #000;
    border-color: #333333;
}

.toast-type-warning {
    color: #000;
    border-color: #333333;
}

.toast-type-error {
    color: #000;
    border-color: #333333;
}

/**
 * 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;

	_position: absolute;
	_right: auto;
	_bottom: auto;
	_left: expression( ( -300 - mail_message.offsetWidth + ( document.documentElement.clientWidth ? document.documentElement.clientWidth : document.body.clientWidth ) + ( ignoreMe2 = document.documentElement.scrollLeft ? document.documentElement.scrollLeft : document.body.scrollLeft ) ) + 'px' );
	_top: expression( ( 20 + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop ) ) + 'px' );
}

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