@charset "UTF-8";
/** CSS Document for pcns.org index page and non-papers page views revised Feb 2021 by Stephen Huston

Body and page Sections **/

body {
	background-image: url(../grafex/essential/medalback.jpg);
	margin: 0;
	padding: 0;
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, Georgia, "Times New Roman", Times, serif;
	color: #030;
	font-size:100%;
	font-size:1em;
}

#masthead {
	padding: 1.3em;
	background-image: url(../grafex/essential/logo_hdr.gif);
	background-color:transparent;
	background-repeat: no-repeat;
	background-position: left;
	height: 100px;
	border-bottom: double 3px #070;
}

#content {
	padding: 1.5em 2.5em 2em 2.5em;
	text-align:left;
	margin: 0px;
}

#footer {
	width:100%;
	background-color: transparent;
	padding:0.66em 0 0.5em 0;
	font-family: inherit;
	font-weight: 500;
	font-size: inherit;
	line-height:1.5em;
	color: #030;
	text-align: center;
	border-top:#060 double 3px;
}
/** End of Sections & Divisions

Line codes for headlines and paragrqphs **/
h1 {
	text-align:right;
	display:none;
}

h2 {
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size: 1.5em;
	color: inherit;
	margin:0;
	padding: 0;
}

h3, h4 {
	font-family:Verdana, Arial, Helvetica, sans-serif;
	color: #030;
	font-style:normal;
	line-height: normal;
	font-weight: bold;
	font-variant:normal;
	text-transform:none;
	text-align:inherit;
	padding: 0;
	margin-top: 0.6em;
	margin-bottom: 0.3em;
}

h3 {
	font-size: 1.3em;
}
h4 {
	font-size: 1.2em;
}
h5 {
	font-size: 1.0em;
}
h6 {
	font-size: 0.8em;
}

h5, h6 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: bold;
	line-height: normal;
	font-variant: normal;
	text-decoration: none;
	text-align:inherit;
	margin-top: 1em;
	margin-bottom: 0.5em;
}

p {margin-top: 0.4em;
	margin-bottom: 0.4em;
	font-size:inherit;
	line-height: 1.2em;
}

ul {
	list-style-type: disc;
	list-style-position: outside;
	list-style-image:url(../grafex/essential/grn_bullet.gif);
	text-align: left;
	font-family:"Times New Roman", Times, serif;
	white-space:normal;
	font-style: normal;
	line-height: 1.25em;
	text-transform: inherit;
	vertical-align:inherit;
	font-weight: normal;
	font-variant: normal;
	text-decoration:none;
	margin-top: 0.75em;
	margin-bottom: 1em;
}

li {
	padding-bottom:0.6em;
	text-align: left;
	}

ol {
	list-style-type: decimal;
	list-style-position: outside;
	list-style-image: none;
	text-align: left;
	font-family:inherit;
	white-space:normal;
	font-style: normal;
	line-height: 1.3em;
	text-transform: none;
	vertical-align: baseline;
	font-weight: normal;
	font-variant: normal;
	text-decoration:none;
}

a:link {
	font-family:inherit;
	font-style: normal;
	color: blue;
	font-weight:inherit;
	line-height: normal;
	letter-spacing: normal;
	vertical-align: baseline;
	text-transform: none;
	text-decoration: none;
	font-variant: normal;
}
a:hover {
	font-family:inherit;
	font-style: normal;
	color: blue !important;
	font-weight: inherit;
	line-height: normal;
	text-transform: none;
	font-variant: normal;
	text-decoration: underline !important;
}
a:visited {
	font-family:inherit;
	font-style: normal;
	color: blue;
	font-weight:inherit;
	line-height: normal;
	letter-spacing: normal;
	vertical-align: baseline;
	text-transform: none;
	text-decoration: none;
	font-variant: normal;
}
a:active {
	font-family:inherit;
	font-style: normal;
	color: yellow;
	font-weight: inherit;
	line-height: normal;
	background-color: red;
	text-transform: none;
	text-decoration: none;
	font-variant: normal;
}

/** End of Element styles

Classes **/

.sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}


.illus {float: right;
	margin: 0.5em 0em 0.5em 2em;
}

.super {
	font-variant:inherit;
	font-size: 60%;
	vertical-align:super;
}

.sub {
	font-variant:inherit;
	font-size: 60%;
	vertical-align:sub;
}

.ssbold {
	font-family:Verdana, Geneva, sans-serif;
	font-weight: bold;
	font-variant:inherit;
	font-size: inherit;
}


/* slide-over menu CSS 
from stackoverflow website Feb 21 2021:
https://stackoverflow.com/questions/60138908/slide-over-navigation-bar#60139236 */

#btn-burger { /* Use ID. You need only one of these */
  position: fixed; /* make it fixed */
  z-index: 2;
  top: 25px;
  right: 25px; /* use right */
  width: 30px; /* should be 30, not 40 */
  height: 30px;
  cursor: pointer;
}
#btn-burger::before,
#btn-burger::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 3px;
  background: #000;
  transition: all .5s ease-in-out;
}
#btn-burger::after { transform: translateY(16px); }

#side-menu {
  position: fixed;
  z-index: 1;
  height: 100%;
  /* Do not use width 0 */
  top: 0;
  right: 0;    /* Use right 0 */
  background-color: #BCBE; /* color BCBE is green with slight transparency 4th chnl*/
  overflow-x: hidden;
  padding-top: 60px;
  transition: 1s;
  transform: translateX(100%); /* Use 100% */
}

#side-menu a {
  padding: 0.25em 2em 0.25em 0;
  display: block;
}

#side-menu p {
  padding: 0 2em 0 1em ;
  display: block;
}

#side-menu ul {
	list-style-type: none;
	list-style-image: none;
}

#menuHandler:checked ~ #btn-burger::before { transform: rotate(45deg); }
#menuHandler:checked ~ #btn-burger::after  { transform: rotate(-45deg); }
#menuHandler:checked ~ #side-menu { transform: translateX(0%); } /* do not use width here.

END of css for slideover Menu area*/