.toast-container-top-left {
	width: 260px;
	z-index: 9999;
}

.toast-container-top-center {
	width: 300px;
	z-index: 9999;
}

.toast-container-top-right {
	width: 260px;
	z-index: 9999;
}

.toast-container-middle-left {
	width: 260px;
	z-index: 9999;
}

.toast-container-middle-center {
	width: 300px;
	z-index: 9999;
}

.toast-container-middle-right {
	width: 260px;
	z-index: 9999;
}


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

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

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

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

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

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

.toast-item {
	height: auto;
    min-height: 115px;
	background: #333;
    opacity: 0.9;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	color: #ddd;
	padding-top: 20px;
	padding-bottom: 20px;
	padding-left: 6px;
	padding-right: 6px;
	font-family: "Century Gothic", Verdana, Arial, Helvetica, Sans-Serif;
	font-size: 14px;
    font-weight: normal;
	border: 5px solid #c0c000;
	display: block;
	position: relative;
	margin: 0 0 12px 0;
}

.toast-item p {
    text-align: left;
    margin-left: 55px;
	font-family: "Century Gothic", Verdana, Arial, Helvetica, Sans-Serif;
	font-size: 14px;
    font-weight: normal;
    display: table-cell;
    vertical-align: middle;
}

.toast-item a {
    color: #fff;
	font-family: "Century Gothic", Verdana, Arial, Helvetica, Sans-Serif;
    font-weight: bold;
    text-decoration: underline;
}

.toast-item-close {
    background:url(../images/close.png);
    width: 22px;
    height: 22px;
    position: absolute;
    top: -4px;
    right: -3px;
    cursor: pointer;
}

.toast-item-image {
    width:48px;
    height: 160px;
    margin-left: 0px;
    margin-top: -35px;
    margin-right: 7px;
    float:left;
}

.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-item-image-goal {
    background:url(../images/goal.png);
}


/**
 * toast types
 *
 * pattern: toast-type-[value]
 * where 'value' is the real value of the plugin option 'type'
 *
 */
.toast-type-notice {
    color: white;
    border-color: #0000ff;
	font-size: 14px;
}

.toast-type-success {
    color: white;
    border-color: #00ff00;
	font-size: 14px;
}

.toast-type-warning {
    color: white;
    border-color: #c0c000;
	font-size: 14px;
}

.toast-type-error {
    color: white;
    border-color: #ff0000;
	font-size: 14px;
}

.toast-type-goal {
    color: white;
    border-left: 5px solid #0000ff;
    border-right: 5px solid #00ff00;
    border-top: 5px solid #ff0000;
    border-bottom: 5px solid #c0c000;
	font-size: 14px;
}

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