.floatMessage{
    display: none;
    background-color: #FFFFFF;
	clear: both;
	max-width: 500px;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	margin: 0px;
	position: fixed;
	z-index: 10000;
	top: 0px;
}
.floatMessage .text {
	background-repeat: no-repeat;
	background-position: top left;
	margin: 5px 5px 5px 5px;
	padding: 2px 10px 2px 10px;
	max-height: 600px;
	color: #000000;
	overflow: auto;
}
.floatMessage .closeButton
{
	position: relative;
}
.floatMessage:hover .closeButton > div
{
	width: 10px;
	height: 10px;
	top: 8px;
	right: 10px;
	cursor: pointer;
	position: absolute;
	background-image: url(../img/float_message/close.png);
	background-position: 0px 0px;
}
.floatMessage:hover .closeButton > div:hover
{
	background-position: -10px 0px;
}
/*---------------------------*/
.floatMessage.ok
{
	border: 1px solid #67D903;
	border-top: 0px;
	background-color: #67D903;
}
.floatMessage.error
{
	border: 1px solid #FF2020;
	border-top: 0px;
	background-color: #FF2020;
}
/*
.floatMessage.ok .text {background-image: url(../img/float_message/ok.png); background-position: 0px 2px;}
.floatMessage.error .text {background-image: url(../img/float_message/error.png); background-position: 0px 2px;}
*/

