/* CSS Document */


/*
This file contains the
design properties of the 
iAmax Toast
*/


/*Remitbox Toast*/
#toast{
	width: auto;
	height: auto;
	position: fixed;
	top: 25%;
	/*left: 40%;*/
	padding: 10px;
	background: #b04cc8;
	color: #000;	
	font-weight: bold;
	border: 1px solid #b04cc8;
	z-index: 5002;
	display: none;
	font-family:Arial, Helvetica, sans-serif;
	
	/*For shadow and border,
	applicable only to modern browsers */
	border-radius:5px;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	
	 -moz-box-shadow: 0 0 1em #666;
	-webkit-box-shadow: 0 0 1em #666;
    box-shadow: 0 0 1em #666;
	}

