@charset "utf-8";

.toast {
	position:absolute;
	width:auto;
	min-width:36px;
	height:auto;
	display:none;
	padding:5px 5px 5px 5px;
	background-color:#000;
	border-color:#999;
	border-style:solid;
	border-width:1px;
	border-radius:5px;
	text-align:center;
	vertical-align:middle;
}

.toast-message {
	display:block;
	color:#FFF;
	font-family:Arial, Helvetica, sans-serif;
	font-size:14px;
	font-weight:normal;
}

.toast-spinner {
	display:none;
	width:100%;
	height:32px;
	background:url(images/spinner.gif) no-repeat top center;
}

.toast-mask {
	background-color:#FFFFFF;
	opacity: 0.75;
}

.toast-message table{
	border-collapse:separate;
}

.toast-message table td{
    padding:15px;
    color:#fff;
    text-shadow:1px 1px 1px #568F23;
    border:1px solid #93CE37;
    border-bottom:3px solid #9ED929;
    background-color:#9DD929;
    background:-webkit-gradient(
        linear,
        left bottom,
        left top,
        color-stop(1, rgb(123,192,67)),
        color-stop(1, rgb(139,198,66)),
        color-stop(1, rgb(158,217,41))
        );
    background: -moz-linear-gradient(
        center bottom,
        rgb(123,192,67) 2%,
        rgb(139,198,66) 51%,
        rgb(158,217,41) 87%
        );
    -webkit-border-top-left-radius:5px;
    -webkit-border-top-right-radius:5px;
    -moz-border-radius:5px 5px 0px 0px;
    border-top-left-radius:5px;
    border-top-right-radius:5px;
}