:root 
{
/* FLOAT BOLCK MIN SIZE */
--WS-min-float-block-width: 400px;
--WS-max-float-block-height: 500px;
}

.ws_float_center_container_ext
{
	display:flex;
	flex-wrap: wrap;
    justify-content: stretch;
    align-items: stretch;
	margin:10px;
}

/* THIS IS THE GRID OF THE PAGE */
.ws_act_float_block_ext
{
	display:inline-block;
	padding:10px;
	min-height:400px;
	margin: 10px;
	overflow-wrap: break-word;
	flex: 1 1 var(--WS-min-float-block-width);
	text-align:left;
}

.ws_float_block_ext
{
	min-width:var(--WS-min-float-block-width);
	max-height:var(--WS-max-float-block-height);
	min-height:100%;
}

.ws_float_block a
{
	text-decoration:none;
}