.floatMessage
{
	display: none;
	clear: both;
	position: fixed;
	z-index: 10000;
	top: 0;

	box-shadow: 0 0 3px #999999;
	color: #FFFFFF;

	animation-duration: 0.5s;
	animation-fill-mode: both;
	animation-name: fadeInDown10;
	max-width: 100%;
}
.floatMessage .icon
{
	position: absolute;
	top: 15px;
	left: 15px;
	font-size: 2.2rem;
}
.floatMessage .text
{
	padding: 15px 40px 15px 50px;
	overflow: auto;
	font-size: 1.3rem;
	line-height: 1.42857143;
	max-width: 600px;
}
.floatMessage .closeButton
{
	position: relative;
}
.floatMessage .closeButton > div
{
	top: 15px;
	right: 15px;
	cursor: pointer;
	position: absolute;
	font-size: 1.3rem;
}
.floatMessage .text a
{
	color: #FFFFFF;
	text-decoration: underline;
}

/*---------------------------*/

.floatMessage.ok
{
	background-color: #00A65A;
}
.floatMessage.ok .text
{
}

.floatMessage.error
{
	background-color: #DD4B39;
}
.floatMessage.error .text
{
}
