/* Site-wide css template */

/********** <Header> ********/

header {
	background-color: white;
	width: auto;
	margin: auto;
}

#headerLink {
	text-decoration: none;
	color: black;
	display: inline-block;
	margin-left: 3px;
}

#headerSeperator {
	display: block;
}

/********** <Nav> ***********/

nav {
	text-align: center;
	position: fixed;
	height: 50%;
	width: 200px;
	top: 30px;
	right: 0px;
}

#menu {
	display: none;	
}

.menuLabel{
	display: none;
	position: fixed;
	top: 25px;
	right: 0px;
	width: 3em;
}

.menuLabel hr {
	border-style: solid;
	border-radius: 5px;
	border-width: 3px;
	margin-top: 5px;
	margin-bottom: 5px;
}

.navList ul{
	list-style-type: none;
	width: 100%;
	padding: 0px;
}

li.navLinks {
	margin-bottom: 10px;
}

a.navLinks {
	display: block;
	color: black;
	text-decoration: none;
	width: 100%;
}

a.navLinks:hover {
	font-weight: bold;
	text-shadow: -1px 1px 0px #A9A9A9;
}

/********** <main> **********/

body {
	background-color: white;
	font-family: Arial, Helvetica, sans-serif;
	margin-right: 200px;
	margin-left: 0px;
	
}

main {
	width: 100%;
	padding: 10px;
}

section  {
	text-align: center;
	width: 90%;
	margin-bottom: 50px;
	margin-left: auto;
	margin-right: auto;
}

.vSpace {
	margin-top: 100px;
}

h2,h3 {
	text-align: center;	
}

.center {
	
	float: left;
	margin: auto;
	width: 55%;
}

.left {
	
	text-align: left;
	width: 25%;
	float: left;
	margin: 0px;
}

.right {
	
	text-align: right;
	width: 20%;
	float: right;
	margin: 0px;
}

.alignLeft {
	text-align: left;
	margin-left: 0px;
	width: 100%;
}

p {
	clear: both;
	padding: 10px;
	text-align: center;
	line-height: 1.25;
}

p.sub {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 95%;
	text-align: left;
	text-indent: 3em;
}

p.bold {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 95%;
	text-align: left;
	text-indent: 0em;
}

p.bold:first-letter {
	font-size: 300%;
	float: left;
	padding-right: 0.25em;
	padding-left: 0.25em;
	margin-top: -0.25em;
}

code {
	display: block;
	width: 90%;
	min-height: 15em;
	max-height: 50em;
	overflow-y: scroll;
	background-color: lightgray;
    border-style: solid;
	border-radius: 10px;
    margin: auto;
    padding: 0em 0em 0em 0.5em;
    color: black;
    text-align: left;
	font-family: monospace;
}

code ol {
	margin: 0em;
}

code ol li pre {
	background-color: whitesmoke;
	margin: 0em;
	padding: 0.5em 0.25em 0em 0.5em;
	white-space: pre-wrap;
	word-wrap:break-word;
}

code ol li pre:empty:before {
  content: "\200b"; // unicode zero width space character
}

hr {
	width: 80%;
	text-align: center;
}

hr.vLine {
	display: block;
	position: relative;
	width: 1px;
	height: 80%;
	float: left;
	top: 100px;
}

.unStyle {
	list-style-type: none;
	margin-right: 40px;
}

ol.certList {
	text-align: left;
}

ol.certList li {
	list-style-type: none;
	display: inline-block;
	margin: 5px 10px 5px 10px;
}

ol.certList li:first-child {
	font-weight: bold;
}

iframe.siteFrames {
	height: 400px;
	width: 100%;
	resize: both;
}

* {
	box-sizing: border-box;
}

/************************************************** Portrait/mobile view ************************************************/
@media screen and (orientation: portrait){

/********** <Header> ********/


/********** <Nav> ***********/

	nav {
	text-align: center;
	position: fixed;
	height: auto;
	width: 200px;
	top: 0px;
	right: 0px;
    }

	nav label{
		cursor: pointer;
	}

	nav input{
		display: none;
	}

	#navBar {
		background: transparent;
		position: fixed;
		top: 25px;
		height: auto;
		width: auto;
		padding: 0px;
	}
	
	.menuLabel {
		display: block;
	}

	.navList {
		position: fixed;
		box-shadow: 10px 10px 10px;
		border: solid;
		border-radius: 10px 0px 0px 10px;
		background: rgba(255, 255, 255, 0.95);
		right: -200px;
		top: 15px;
		width: 200px;
		height: auto;
		z-index: -1;
	}

	.navList ul {
		clear: both;
	}

	li.navLinks {
		display: block;
		z-index: 2;
	}

	.navList h2 {
		float: left;
		margin-left: 1em;
	}

	input:checked ~ .navList {
		display: block;
		right: -3px;
		transition: right 0.2s linear;
	}

/********** <main> **********/


	body {
		margin-right: 0%;
	}

	section  {
		width: 100%;
	}

	hr.vLine {
		display: none;
		width: 0px;
		height: 0px;
		float: left;
	}
	
	ol.unStyle {
		width: 100%;
		padding-left: 0px;
	}
	
	ol.certList {
		margin-left: 0px;
		padding-left: 0px;
	}

	ol.certList li {
		padding-left: 0px;
		margin-left: 0px;
	}
}
