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


/*.message{
	border-color: black;
    border-radius: 5px;
    box-shadow: 0 1px 1px #FFFFFF inset;
    margin: 0.2em;
    padding: 5px;
}

.error{
	text-align: center;
    border: 2px solid #CC0033 !important;
    color: #CC0033;
}

.notice{
	text-align: center;
    border: 2px solid #CC0033 !important;
    background-color: #E8EEF1;
    color: #000000;
}
*/



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

.toast-item {
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	padding: 20px 6px;
	
	display: block;
	position: relative;
	margin: 0 0 12px 0;

	height: auto;
	background-color: white;
	opacity: 1;
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 22pt;
	color: black;
	border: 5px solid #e0e0e0;
	-webkit-box-shadow: 0 0 15px rgba(0,0,0,0.4);
	-moz-box-shadow: 0 0 15px rgba(0,0,0,0.4);
	box-shadow: 0 0 25px rgba(0,0,0,1);
	z-index: 9999;
}

.toast-item p {
	line-height: 1.2em;
    text-align: left;
    margin-left: 50px;
}

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

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

.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-success{
	border-color: greenyellow;
}

.toast-type-message{
	border-color: black;
}

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

.toast-type-error{
	border-color: darkorange;
}

/**
 * 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: 35px;
    right: 10px;
}

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