.vertical-scroll {
	max-height: 340px;
	overflow-y: scroll;
}

#rob {
	padding-left: 20px;
	padding-right: 20px;
}

#rob > ol {
	padding: 0;
}

/* spacing between number and text */
#rob li > span > span:first-child {
	margin-right: 4px;
}

#rob > ol > li > span:first-child {
	font-size: 16px;
	font-weight: bold;
}

#rob li > span {
	display: flex;
}

#rob ol {
  list-style: none;
  counter-reset: level1;
}

#rob > ol ol {
  counter-reset: level2;
}

#rob > ol ol ol {
  counter-reset: level3;
}

#rob > ol ol ol ol {
  counter-reset: level4;
}

#rob > ol ol ol ol ol {
    counter-reset: level5;
}

#rob > ol > li {
  counter-increment: level1;
}

#rob > ol ol > li {
  counter-increment: level2;
}

#rob > ol ol ol > li {
  counter-increment: level3;
}

#rob > ol ol ol ol > li {
  counter-increment: level4;
}

#rob > ol ol ol ol ol > li {
    counter-increment: level5;
}

#rob > ol > li::before {
	font-weight: bold;
  	font-size: medium;
}

#rob > ol > li > span:first-child > span:first-child::before {
  content: counter(level1, decimal) ".";
}

#rob > ol ol > li > span > span:first-child::before {
  content: counter(level2, lower-alpha) ".";
}

#rob > ol ol ol > li > span > span:first-child::before {
  content: "(" counter(level3, decimal) ")";
}

#rob > ol ol ol ol > li > span > span:first-child::before {
  content: "(" counter(level4, lower-alpha) ")";
}

#rob > ol ol ol ol ol > li > span > span:first-child::before {
    content: "(" counter(level5, lower-roman) ")";
}

#rob thead {
    font-weight: bold;
}

#rob td, #rob th {
    border: 1px solid;
    text-align: start;
    vertical-align: top;
}