﻿#printarea {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Courier New', Courier, monospace;
  font-size: 16px;
  user-select: none;
}

@media print {
  .pagebreak {
    page-break-before: always;
  }
  #header {
    display: none;
  }
}

#printarea {
  /* outline: 1px black solid; */
  width: 1110px;
}

.newsect {
  /* outline: 1px solid pink; */
  padding: 5px 0;
  display: flex;
  justify-content: space-between;
  width: 1100px;
}

.questiontitle {
  font-weight: bold;
}

.pagetitle {
  display: inline-block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.7rem;
  font-weight: bolder;
  margin-right: 60px;
  margin-bottom: 15px;
}

.sectiontitle, .sectiontitle span {
  font-family: Arial, Helvetica, sans-serif;
  margin: 30px 0 20px 0;
  padding: 5px 0 0 5px;
  font-size: 1.2rem;
  background: linear-gradient(to bottom,#BECFFF, white);
  color: darkblue;
  font-weight: bold;
  border-bottom: 4px darkblue solid;
}

.sectionsubtitle {
  font-family: Arial, Helvetica, sans-serif;
  display: inline-block;
  color: blue;
  margin: 10px 0 10px 10px;
  padding: 10px 0 10px 0;
  font-weight: bolder;
  font-size: 1.1rem;
}

.questionbox {
  /* outline: red 2px solid;  */
  margin-top: 5px;
  display: flex;
  width: 100%;
  align-content: center;
  justify-content: center;
}

.boxleft {
  flex-grow: 1;
  padding: 10px;
  font-weight: bold;
}

.boxright {
  flex-grow: 3;
  padding: 10px;
}

.innerbox {
  width: 25%;
}

#printarea :disabled {
  color: black;
}
