@charset "UTF-8";
/* CSS Document */

html, 
html * {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: Gotham, Helvetica Neue, Helvetica, Arial," sans-serif";
}

header {
	padding: 8px;
	background-color:#990000;
	color:#ffffff;
    position:sticky;
    top:0;
	z-index: 100;
}

body {
	margin-left: auto;
	margin-right: auto;
}

main {
	padding: 20px;
}

footer {
	padding: 8px;
	background-color:#990000;
	color:#ffffff;
	text-align: center;
}

p {
	line-height: 1.6em;
	margin:0 0 1.0em;
	padding: 0 8px;
}

h1 {
	padding: 1rem 2rem;
	border-top: 2px solid #000;
	border-bottom: 2px solid #000;
/*	background-color: #FADBDA;*/
	font-size: 28px;
	margin:0 auto;
	width: fit-content;
	margin-top: 5px;
	margin-bottom: 20px;
}


h2 {
	margin-top: 5px;
	margin-bottom: 24px;
	padding: 0.6rem 1.2rem;
  	background: #FFF0F0;
	margin-top: 20px;
	margin-bottom: 10px;
	position: sticky; 
  	top: 258px;
	z-index: 50;
}

h3 {
	font-size: 20px;
	color:#990000;
	margin-top: 5px;
	margin-bottom: 10px;
	padding: 10px 8px;
}

ol {
  margin-left: 1.5em;
  padding-left: 0.3em;
  padding-top: 10px;
  padding-bottom: 10px;
}

li {
	margin-bottom: 8px;
}

strong {
	color: red;
}

.style-logo {
	margin-left: auto;
	margin-right: auto;
	display: inline-block;
	font-size:20px;
	font-style: bold;
}

.style-nav ul {
	list-style-type: none;
}

.style-nav ul li a {
	text-decoration: none;
	color: #ffffff;
	text-align: center;
	display: block;
	text-transform: uppercase;
	padding: 8px;
}

.style-nav .current {
  background: #ffffff;
  color: #990000;
}

.style-item {
  margin-left: 1.5em;
  padding-left: 0.3em;
  padding-top: 10px;
  padding-bottom: 10px;
}



/*
.style-nav a:hover {
  background: #ffffff;
  color: #990000;
}
*/
.style-title {
	padding: 30px;
}

.style-update {
	padding-left: 20px;
}


/*Tablet View*/

@media (min-width: 768px){
	
	body {
		max-width: 778px;
	}

	h2 {
	  	top: 84px;
	}

	.style-nav ul li {
		display: inline-block;
	}
	
	.style-nav ul {
		text-align: center;
	}
}

/*Desktop View*/

@media (min-width: 1024px){
	
	body {
		max-width: 1200px;
	}

	header {
		height:50px;
	}

	h2 {
	  	top: 50px;
	}

	.style-logo {
		float: left;
	}
	
	.style-nav {
		float: right;
	}
	
}

