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

/*
* {
  border-color:blue;
  border-style:dashed;
  border-width:thin;
}
*/

body {	
  font-family: Verdana, Geneva, sans-serif;
	font-size: 16px;
	word-wrap: normal;
	color: #303030;
	text-align: justify;
	background-color: #D3D3D3;
  display: grid;
  grid-template-columns: 1fr;
  grid template-rows: 1fr;
  margin: 10px;
}	

.top-border {
  position: fixed;
  top: 0;
  width: 101%;
  background-color: #D3D3D3;
  height: 10px;
  margin-left: -12px;
  z-index: 2;
}

.left-border {
  position: fixed;
  left: 0;
  height: 101%;
  background-color: #D3D3D3;
  width: 10px;
  z-index: 2;
}

.right-border {
  position: fixed;
  right: 0;
  height: 101%;
  background-color: #D3D3D3;
  width: 10px;
  z-index: 2;
}

.bottom-border {
  position: fixed;
  bottom: 0;
  width: 101%;
  background-color: #D3D3D3;
  height: 10px;
  z-index: 2;
}

.topofform_link {
  display: none;
}

.page {
  display: flex;
  flex-direction: row;
  background-color: #FFFFFF;
  padding: 10px;
}

.center {
	text-align: center;
	margin: auto;
	text-indent: 0px;
}

nav {
  background-color: lightblue;
  position: fixed;
  left: 10px;
  top: 10px;
  background-color: white;
  z-index: 1;
}

.nav-link {
  margin-left: -15px;
}

li.nav-link-li {
  display: flex;
  align-items: center;
  height: 50px;
}

#main-doc {
  margin-left: 250px;
  padding: 10px;
  width: 100%;
  border-left: 5px solid #D3D3D3;
}

header {
  font-size: 20px;
  font-weight: bold;
  padding-top: 5px;
}


.main-section {
  
}

code {
  margin-left: 40px;
}

@media  (max-width: 700px) {
.page {
  display: flex;
  flex-direction: column;
}
  .topofform_link {
    display: inline;
    float: right;
    margin-right: 20px;
}
  #main-doc {
    margin-left: 0;
  }

  li.nav-link-li {
    display: flex;
    align-items: center;
    width: 100%;
    height: 25px;
}
  nav {
    position: static;
    max-width: 100%;
  }
}