/* ~~ 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.

*/
.sidebar1 p {
	padding: 0 10px;
}

@media screen and (min-width:45em) {
	#content > h1 { grid-area: h1; }
	#content > .sidebar1 { grid-area: sidebar; }
	#content > .content { grid-area: content; }

   #content {
		display: grid;
		grid-template-columns: 1fr 14em;
		grid-template-areas:
		   "h1 h1"
			"content sidebar";
		justify-content: start;
		align-items: start;
	}
}

.content blockquote.note {
	display: inline-flex;
	background-color: #AC9;
	background-color: rgba(51,153,51,.4);
	padding: 5px;
	margin: 0px 40px 15px 40px;
	border: 1px solid #393;
	max-width: 75em;
}

.comments {
	display: block;
	background-color: rgba(51,153,51,.4);
	border: 1px solid #393;
	padding: 1em;
	margin: 1em 0;
}

@media print {
   #buttonBox {
	   display: none;
   }
}

#buttonBox {
	display: flex;
	flex-wrap: wrap;
	gap: 2px;
}

#buttonBox .button {
	width: 14em;
}

#buttonBox .button img {
    margin: 0 12px -6px 0 !important;
}

.button {
	display: block;
	border: 1px solid black;
	background: #fff;
	border-radius: 8px;
	box-shadow: rgba(0,0,0,1) 0 1px 0;
	padding: 8px 15px;
   font-size: 14px;
}

.button:link, .button:visited, .button:hover, .button:active {	
   text-decoration: none;
   color: #4E5869;
}

.button:hover, .button:active {
   border: 1px solid #631;
   border-top-color: #b0651a;
   background: #FCF2D2;
   color: #000;
   }
 
/* 2 columns */
.columns {
   width: 100%;
	line-height: 1.2rem;
}

.col1 {
   display: inline-block;
	vertical-align: top;
	margin: 0 1em 0 0 
}

.col1 td {
	padding-left: 8px;
}

.col2 {
	display: inline-block;
	vertical-align: top;
	margin: 0;
}

.col2 td {
	padding-left: 8px;
}

.columns tr {
	height: 18px;
}

.columns tr.first {
	height: 36px;
}

.columns tr td, .columns tr th {
	vertical-align: middle;
}

.content .clues {
	padding: 0 15px 15px 0;
}

.red {
	color: #802;
}

.green {
	color: #0a0;
}

b {
	font-weight: bold !important;
}
