div { word-wrap: break-word }

body { 
	
	margin-left: auto;
	margin-right: auto;
	font: 1.3em 'Open Sans', Tahoma, verdana, sans-serif;
	font-weight:400;
	color: #333333;
	padding: 0px;
}
.posts b {
 font-weight:700;

 
}
p {line-height: 112%}
br {line-height: 100%}

h2 { font-size: 14px; font-weight: 400; }
	
a:link {
	text-decoration: none; 
	color: #000066;
	}
a:visited {
	text-decoration: none;
	color: #999999;
	}
a:hover, a:active {
	text-decoration: none;
	color: #0000FF;
	}

img	{text-decoration: none}

/* Autolinked images in message bodies shouldn't blow past the column. */
.body img { max-width: 100%; height: auto; }

/* Uploaded image attachments. */
.post-images {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: flex-start;
	margin: 0.8em 0;
}
.post-image {
	max-width: min(100%, 480px);
	max-height: 360px;
	width: auto;
	height: auto;
}
.image-expired {
	color: #999999;
	font-style: italic;
}

ul {  padding-top:0.1em; 	padding-bottom:0.1em; }
li {  min-width: 55px; }

/* --- Image upload dropzone (progressive enhancement; see assets/mb.js) --- */
.dropzone {
	border: 2px dashed #b3b3b3;
	border-radius: 6px;
	padding: 24px 16px;
	background: #fafafa;
	transition: border-color 0.15s, background 0.15s;
}
/* Only once JS has enhanced the zone do we take over the native control:
   hide the plain <input>, show the drag/browse prompt, and make the whole
   box a click target. Without JS the native file input stays visible. */
.dropzone--enhanced {
	cursor: pointer;
	min-height: 120px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: stretch;
}
.dropzone.dragover {
	border-color: #000066;
	border-style: solid;
	background: #eef0f8;
}
.dropzone.has-files {
	background: #ffffff;
}
.dropzone--enhanced .dropzone-input {
	/* Visually hidden but still a real, submittable control. */
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	border: 0;
}
.dropzone-prompt {
	display: none;
	font-size: 0.85em;
	color: #666666;
	text-align: center;
}
.dropzone--enhanced .dropzone-prompt {
	display: block;
}
.dropzone-browse {
	background: none;
	border: 0;
	padding: 0;
	color: #000066;
	text-decoration: underline;
	cursor: pointer;
	font: inherit;
}
.dropzone-list {
	list-style: none;
	margin: 12px 0 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.dropzone-item {
	position: relative;
	min-width: 0;
	width: 96px;
	font-size: 0.65em;
	color: #555555;
	cursor: default;
}
.dropzone-thumb {
	display: block;
	width: 96px;
	height: 96px;
	object-fit: cover;
	border: 1px solid #dddddd;
	border-radius: 3px;
	background: #f0f0f0;
}
.dropzone-meta {
	display: block;
	margin-top: 3px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.dropzone-remove {
	position: absolute;
	top: -7px;
	right: -7px;
	width: 20px;
	height: 20px;
	line-height: 18px;
	padding: 0;
	border: 1px solid #ffffff;
	border-radius: 50%;
	background: #333333;
	color: #ffffff;
	font-size: 14px;
	cursor: pointer;
}
.dropzone-remove:hover {
	background: #cc0000;
}
.dropzone-progress {
	margin-top: 12px;
}
.dropzone-track {
	height: 8px;
	background: #e6e6e6;
	border-radius: 4px;
	overflow: hidden;
}
.dropzone-bar {
	height: 100%;
	width: 0;
	background: #000066;
	transition: width 0.15s linear;
}
.dropzone-status {
	display: block;
	margin-top: 4px;
	font-size: 0.7em;
	color: #666666;
}


