/* Cascading style sheet for web protocol(s) */

/* container code */
/* container for protocol content section */
#contain {
  width: 95%;
  margin: 5px auto 5px auto;
}

#container {
  width: 95%;
  margin: 5px auto 5px auto;
}

#conContent {
  padding:10px;
}

#containerContent {
  padding:8px;
}

#conContentBLS {
  background-color: #e6e6e6;
  padding:8px;
}
/* end of container code */

/* accordion button items */
button.accordion {
  cursor: default;
  padding: 10px 24px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
}

button.accordion.active, button.accordion:hover {
}

button.accordion:after {
  content: '\002B';
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

button.accordion.active:after {
  content: "\2212";
}
/* end of accordion button items */

/* accordion panel items */
div.panel { /* generic accordion panel with white background */
  padding: 0 18px;
  background-color: #ffffff;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

div.panelA { /* adult accordion panel with light blue background */
  padding: 0 18px;
  background-color: #cce0ff;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

div.panelP { /* pediatric accordion panel with light pink background */
  padding: 0 18px;
  background-color: #ffe6e6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
/* end of accordion panel items */


/* navigation button styling code */
.btn-group button {
  padding: 10px 24px;
  cursor: default;
  float: left;
}

.btn-group:after {
  content: "";
  clear: both;
  display: table;
}

.btn-group button:not(:last-child) {
  border-right: none;
}

.btn-group2 button {
  padding: 10px 24px;
  cursor: default;
  float: left;
  text-align: left;
}

.btn-group2:after {
  content: "";
  clear: both;
  display: table;
}

.btn-group2 button:not(:last-child) {
  border-right: none;
}
/* end of navigation button styling code */

/* begin button container code */
.btn-container1{
  max-width: 750px;
  margin: auto;
}

.btn-container2{
  max-width: 200px;
  margin: auto;
}
/* end button container code */

/* code to adjust image size based on screen size */
img {
  max-width: 100%;
  height: auto;
}
/* end image adjusting code */

/* code to style tables */
table, th, td {
  border: 3px solid lightgrey; /* can also use #XXXXXX color code */
  border-collapse: collapse;
}

.aTable {
  border: 3px solid #000080;
  background-color: #cce0ff;
}

.pTable {
  border: 3px solid #ff3399;
  background-color: #ffe6e6;
}

.fill {
  background-color: lightgrey; /* can also use #XXXXXX color code */
}

.tblSpecial1 {
  width: 90%;
}

.tblSpecial2 {
  width: 90%;
}

.trSpecial {
  height: 100px;
}

.tdSpecial1 {
  background-color: #0000cc;
  color: white;
}

.tdSpecial2 {
  background-color: #ff6600;
  color: white;
}
/* end of table style code */

/*image caption styling code*/
#imgCaption {
  color: orange;
  text-align: center;
  font-style: italic;
  font-size: 10px;
}
/* end of table style code */

/* tutorial style code */
#mainTutorialPage {
  background-color: #e6ffe6;
}

#containerMain {
  width:80%;
  background-color: #e6ffe6;
  margin-left:auto;
  margin-right:auto;
}

#container1 {
  background-color: #e6ffe6;
  float:left;
  width:58%;
}

#container2 {
  background-color: #e6ffe6;
  float:right;
  width:40%;
  text-align: center;
}

#container3 {
  background-color: #e6ffe6;
  float:right;
  width:58%;
}

#container4 {
  background-color: #e6ffe6;
  float:left;
  width:40%;
  text-align: center;
}
/* end of tutorial style code */
