/*
	HUMANIZED MESSAGES 1.0
	http://binarybonsai.com/humanized-messages-for-jquery
	http://humanmsg.googlecode.com
*/

/* Default message (black color theme) */
.humanMsg {
font: normal 20px/50px Helvetica, Arial, Sans-Serif;
letter-spacing: -1px;
position: fixed;
top: 130px;
left: 25%;
width: 50%;
color: white;
background-color: black;
text-align: center; 
display: none;
opacity: 0;
z-index: 100000;
}
.humanMsg .round {
/*
border-left: solid 2px white;
border-right: solid 2px white;
font-size: 1px; height: 2px;
*/
}
.humanMsg p {
padding: .3em;
display: inline; 
}
.humanMsg a {
display: none;
}
	
	
/* Error message (red color theme) */
.humanMsg_error {
font: normal 20px/50px Helvetica, Arial, Sans-Serif;
letter-spacing: -1px;
position: fixed;
top: 130px;
left: 25%;
width: 50%;
color: white;
background-color: red;
text-align: center; 
display: none;
opacity: 0;
z-index: 100000;
}
.humanMsg_error .round {
/*
border-left: solid 2px white;
border-right: solid 2px white;
font-size: 1px; height: 2px;
*/
}
.humanMsg_error p {
padding: .3em;
display: inline; 
}
.humanMsg_error a {
display: none;
}
	
	
