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

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


.toast-container {
	position: absolute; !important;
}

.toast-item {
	height: auto;
	background: #aaa;
	/*opacity: 0.9;*/
	/*border-radius: 10px;*/
	/*-moz-border-radius: 10px;*/
	/*-webkit-border-radius: 10px;*/
	color: #eee;
	padding-top: 8px;
	padding-bottom: 8px;
	padding-left: 6px;
	padding-right: 6px;
	font-family: lucida Grande;
	font-size: 14px;
	/*border: 2px solid #999;*/
	display: block;
	position: relative;
	margin: 0 0 12px 0;
}

.toast-item p {
    text-align: left;
    margin-left: 50px;
    width: 250px;
}

.toast-item-close {
    border-left: solid 1px #fff;
    background:url(images/closeIcon.png) no-repeat center;
    width:30px;
    height:100%;
    position: absolute;
    top:0px;
    right:0px;
    cursor: pointer;
}

.toast-item-image {
    width:20px;
    height: 20px;
    position: absolute;
    top: 50%;
    margin-top: -10px;
    left: 10px;
}

.toast-item-image-notice {
    /*background:url(images/notice.png);*/
    background:url(images/exclamation.png) no-repeat;
}

.toast-item-image-success {
    /*background:url(images/success.png);*/
    background:url(images/exclamation.png) no-repeat;
}

.toast-item-image-warning {
    /*background:url(images/warning.png);*/
    background:url(images/exclamation.png) no-repeat;
}

.toast-item-image-error {
    /*background:url(images/error.png);*/
    background:url(images/exclamation.png) no-repeat;
}


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

.toast-type-success {
    color: white;
    background-color: #249815;
}

.toast-type-warning {
    color: white;
    /*border-color: #FCBD57;*/
    background-color: #204971;
}

.toast-type-error {
    color: white;
    /*border-color: #B32B2B;*/
    background-color: #b63134;
}

/**
 * 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: 80px;
    right: 45px;
}

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