/* 
    Created on : Jun 4, 2024, 4:16:03 PM
    Author     : Fred
*/

body {
    font-size: 115%;
}

/* float an inset at the left of the text */
.leftinset {
	display:block;
	float:left;
	border: black solid 0.7pt;
	font-size:85%;
	margin: 0pt 10pt 4pt 0pt;
	padding: 2pt;
	clear:left;
	background-color:#cccccc;
	text-align: center;
}

/* float an inset to the right of the text */
.rightinset {
	display:block;
	float:right;
	border: black solid 0.7pt;
	font-size:85%;
	margin: 3pt 0pt 4pt 10pt;
	vertical-align: top;
	padding: 2pt;
	clear: right;
	background-color:#cccccc;
	text-align: center;
}

.centerinset {
	display:block;
	border: black solid 0.7pt;
	font-size:85%;
	margin: 3pt auto 4pt auto;
	padding: 3pt;
	vertical-align: top;
	background-color:#cccccc;
	text-align: center;
	width: min-content;
	width: -moz-min-content;
}

/* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
.clearfloat { 
	clear:both;
	height:0px;
	font-size: 1px;
	line-height: 0px;
}
