html, body {
	margin: 0;
	padding: 0;
	font-size: 1rem;
	line-height: 1.2;
}

body {
	max-width: 100vw;
	min-height: 100lvh;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

#content * {
	box-sizing: border-box;
}

/* ~~ These are the columns for the layout. ~~ 

1) Padding is only placed on the top and/or bottom of the divs. The elements within these divs have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.

2) No margin has been given to the columns since they are all floated. If you must add margin, avoid placing it on the side you're floating toward (for example: a right margin on a div set to float right). Many times, padding can be used instead. For divs where this rule must be broken, you should add a "display:inline" declaration to the div's rule to tame a bug where some versions of Internet Explorer double the margin.

3) Since classes can be used multiple times in a document (and an element can also have multiple classes applied), the columns have been assigned class names instead of IDs. For example, two sidebar divs could be stacked if necessary. These can very easily be changed to IDs if that's your preference, as long as you'll only be using them once per document.

4) If you prefer your nav on the left instead of the right, simply float these columns the opposite direction (all left instead of all right) and they'll render in reverse order. There's no need to move the divs around in the HTML source.

*/
#content {
   padding: 0;
   margin: 0 auto;
}

/* ~~ This grouped selector gives the lists in the .content area space ~~ */
ul, ol { 
	margin-bottom: 1em;
}

li {
	padding: 0.2em 0;
}

/* 2 columns */
.columns {
   float: left;
   width: 100%;
	line-height: 1.2;
}
.columns tr {
	height: 18px;
}
.columns tr.first {
	height: 24px;
}

table.toggleTable {
	max-width: 100%;
}

table.toggleTable tr {
	border-bottom-color: rgba(128,128,128,.2);
	border-bottom-width: 1px;
	border-bottom-style: solid;
}

table.toggleTable thead tr, table.toggleTable tfoot tr {
	background: rgba(173,112,10,0.35);
}

table.toggleTable tbody tr:nth-child(even) {
	background: rgba(173,112,10,.15);
}

table.toggleTable tbody tr:nth-child(odd) {
	background: rgba(173,112,10,.25);
}

table.toggleTable tbody tr:hover {
	background: rgba(173,112,10,.35);
}

th, td {
	vertical-align: middle;
	padding: 0.4em 0.5em;
}

.toggleTable .archived {
	color: #777;
}

img {
	display: inline-block;
	vertical-align: middle;
	max-width: 100%;
	height: auto;
}

a.unread:link {
	font-weight: bold; 
}

img.glossary {
	margin-right: 10px;
	margin-bottom: 10px;
}

div.donate {
	width: 85%;
	margin: 10px auto;
}

div.donate img {
	max-width: 30%;
}

.pageAnnouncement {
	color: #400;
	background-color: #ffb;
	text-align: center;
	margin: 0.2em 1em 0.2em 0;
	padding: 1em;
	border: 1px solid #800;
}

.numPickOff {
	display:inline-block;
	list-style-type: none;
	margin-right: 15px;
   border-radius: 50%;
   width: 24px;
   height: 24px;
   background: #ffaa22;
   border:1px solid grey;
   box-shadow: 3px 3px 3px rgba(0,0,0,0.2);
   color: white;
   text-align: center;
   font: 1rem/1.5rem system-ui, arial,sans-serif;
   position:relative;
}

.numPickOn {
	display:inline-block;
	list-style-type: none;
	margin-right: 15px;
	border-radius: 50%;
   width: 24px;
   height: 24px;
   background: #ff9900;
   border:2px solid black;
   box-shadow: 3px 3px 3px rgba(0,0,0,0.2);
   color: white;
   text-align: center;
   font: 1rem/1.5rem system-ui, arial,sans-serif;
   position:relative;
}

li.numPickOff a, li.numPickOn a {
	text-decoration: none;
	text-decoration-color: white;
}

.planted {
	    color: #777;
}

.UpLabel {
	padding: 5px 5px 5px 5px;
	color: #000;
	font-size: 1em;
	display: block;
}

#content .announce p {
	margin: 5px 0 1em 10px;
	padding: 0 5px 0px 5px;
}

.inline {
	display: inline-block;
	vertical-align: middle;
	margin: 0.5em 1em 0.5em 0;
	max-width: 100%;
}

#content label.inline {
	background: rgba(0,0,0, 0.1) none;
	color: black;
	font-size: 0.9rem;
	font-variant: small-caps;
	padding: 0.3em 1em 0.5em 0.5em;
	display: inline-block;
	border: 1px solid gray;
	border-bottom: none;
	border-top-right-radius: 1em 2em;
}
