#rcornersSolidBg {
  border-radius: 10pt;
  background: rgb(45%,68%,13%);
  padding: 10pt;
}
#rcornersOutline {
  border-radius: 10pt;
  border: 2pt solid rgb(45%,68%,13%);
  padding: 10pt;
}
#hardBox {
  border: 1.5pt solid rgb(45%,68%,13%);
  padding: 5pt;
}
#rcornersPictureBg {
  border-radius: 10pt;
  background: url(paper.gif);
  background-position: left top;
  background-repeat: repeat;
  padding: 10pt;
}
.headerBox {
    font-weight:bold;
    font-variant: small-caps;
    background-image: url('images/cover.jpg');
    height:126pt;
    background-size: cover;
}
.headerImage {
    width:64pt;
    height:64pt;
    position: relative;
    top: 27pt;
}
#nameBox {
    border-radius: 16pt;
    background: white;
    padding: 5pt;
}
#nametext {
    position:relative;
    top: 1pt;
}
#kanboardDiv {
  display: inline-block;
  color: white;
  text-align: center;
  padding: 14px;
  text-decoration: none;
}
#scrollBoxOuter {
    overflow: auto;
    width: 100%;
}
.stripe {
    width:100%;
    height:auto;
}
p {
    display: block;
    margin-top: 32pt;
    margin-left: 32pt;
    margin-right: 32pt;
    margin-bottom: 16pt;
}
h2, h3, h4, h5, h6 {
/*
    margin-top: 64pt;
    margin-left: 32pt;
    margin-right: 32pt;
    */
}
ul, ol {
    /*margin-top: 64pt;
    margin-left: 64pt;
    margin-right: 32pt;*/
    padding-left:2em;
}
body {
    font-family:Calibri,'Droid Sans',arial,helvetica,sans;
}
img {
    width:67%;
}
article {
    /* background-color: white; */
    /* opacity: 0.5; NOTE: makes foreground transparent too*/
    background-color: rgba(255, 255, 255, 0.85);
    color: black;
}
.subHeader {
    /* background-color: white; */
    background-color: rgba(255, 255, 255, 0.5);
}

.logo-subtitle {
    height:1em;
    padding-left: 6.0mm;
    padding-bottom:2em;
    color: lightgray;
    font-style: italic;
    font-size:1.5em;
} /* Looks best if aligned with subHeader
(combine paddings+margins of:
subHeader (2.0)
+ subHeader a (4.0)
+ navilink (0.0)
 = padding-left: 6.0mm
)
*/


/*

Below is for
Pure CSS Magic Line Navbar
from https://codepen.io/RockStarwind/pen/WmGwwp
by Rock Starwind
*/

@import url('https://fonts.googleapis.com/css?family=Inconsolata|Lato:300,400,700');
html, body, h1, h2, h3, h4, h5, h6, p, li, ol, ul, pre {
	margin: 0;
	padding: 0;
}
html, body { min-height: 100%; }

body {
	background-color: #345;
	background-image: linear-gradient(to bottom, #0009, transparent);
	color: #eee;
	font-family: 'Lato', sans-serif;
	font-size: 62.5%;
	padding: 0 20px;
	box-sizing: border-box;
}
code {
	background: #fff1;
	font-family: 'Inconsolata', monospace;
	padding: .2em .4em;
}

.content {
	background-color: #fff;
	border-radius: 8px;
	box-sizing: border-box;
	color: #666;
	font-size: 1.6em;
	line-height: 1.4em;
	margin: 20px auto;
	margin-top: 80px;
	padding: 20px;
	width: 100%;
	max-width: 800px;
}
.content ul {
	margin: .5em 2em;
	padding: 0;
}

#footer {
	background-color: #246c;
	background-image: linear-gradient(to bottom, transparent, #0009);
	border-top: 1px solid #fff3;
	box-shadow: inset 0 1px 0 #fff3, 0 0 32px #000;
	overflow: hidden;
	padding: 8px;
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9001;
}
#footer a {
	color: #85c6f6;
	padding: 1em 0;
	text-decoration: none;
}
#footer ul {
	display: flex;
	list-style: none;
	justify-content: center;
	font-size: 2em;
	font-weight: 300;
}
#footer ul li {
	padding: 0 .5em;
}

/* Appearance */
.links {
	background-color: #123;
	background-image: linear-gradient(to bottom, #0003, transparent);
	border-bottom: 1px solid #0003;
	box-shadow: 0 0 32px #0003;
	font-size: 2em;
	font-weight: 300;
}
.links > a {
	color: #9ab;
	padding: .75em;
	text-align: center;
	text-decoration: none;
	transition: all .5s;
}
.links > a:hover {
	background: #ffffff06;
	color: #adf;
}
.links > .line {
	background: #68a;
	height: 1px;
	pointer-events: none;
}

/* The Magic */
#header {
	/* position: fixed; 
	top: 0;
	left: 0;
	right: 0;
    */
}
.links {
	display: grid;
	grid-template-columns: repeat(var(--items), 1fr);
	position: relative;
}
.links > .line {
	opacity: 0;
	transition: all .5s;
	position: absolute;
	bottom: 0;
	left: var(--left, calc(100% / var(--items) * (var(--index) - 1)));
	width: var(--width, calc(100% / var(--items)));
	--index: 0;
}
.links > .link-active {
    color:white;
}
.links > a:hover ~ .line {
	opacity: 1;
}

.links > a:nth-of-type(1):hover ~ .line { --index: 1; }
.links > a:nth-of-type(2):hover ~ .line { --index: 2; }
.links > a:nth-of-type(3):hover ~ .line { --index: 3; }
.links > a:nth-of-type(4):hover ~ .line { --index: 4; }
.links > a:nth-of-type(5):hover ~ .line { --index: 5; }
.links > a:nth-of-type(6):hover ~ .line { --index: 6; }
.links > a:nth-of-type(7):hover ~ .line { --index: 7; }
.links > a:nth-of-type(8):hover ~ .line { --index: 8; }
.links > a:nth-of-type(9):hover ~ .line { --index: 9; }
.links > a:nth-of-type(10):hover ~ .line { --index: 10; }
