.floater
{
	/*position:fixed;
	left:0px;
	top:0px;*/
	/*max-width:calc(100% - 10px);
	max-height: calc(100% - 25px);*/
	
	position:fixed;
	min-width:25px;
	min-height:25px;
	
	/*position: relative;*/
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	
	border: 1px solid #999;
}

.floaterbar
{
	display:inline-block;
	height:15px;
	width:100%;
	background:#333;	
}

.floatercontent
{
	background:#fff;
	display:inline-block;
	padding:5px;
	resize:both;
	overflow: auto;
	max-width: calc(100% - 10px);
	max-height: calc(100% - 25px);
}

.floatercloseBtn
{
	height:14;
	color:#fff;
	font-size:12px;
	position:fixed;
	margin-top:1px;
	margin-right:1px;
	padding-right:20px;
	cursor:pointer;
	top:0;
	right:0;
	background:url(pics/cross.png);
	background-repeat:no-repeat;
	background-position:top right;
	text-align:right;
}