/**
 * @file
 * wvca layout styling.
 */

/**
 * Container
 */
.layout-container {
  box-sizing: border-box;
  max-width: 860px;
  margin-right: auto;
  margin-left: auto;
}

@media all and (min-width: 851px) {
   html{overflow-y: scroll;}
  .layout-container {
    max-width: 1290px;
  }
}

/**
 * Main
 */
.layout-main-wrapper {
  min-height: 300px;
}
.layout-main {
  margin-top: 10px;
  margin-bottom: 40px;
  display:flex;
}

/* Styles for formatting sub-ordered-list-items with 1.1., 1.1.1., etc.)*/
	
/* First, set all numbered lists to use counter-reset */
.multi {
      counter-reset: item;
      padding-left: 10px;
}

/* Display all list items in a numbered list in block display */
.multi > li {
      display: block;
      margin-top: 10px;
}

/* Use a counter that checks the number of items and adds a "." between them and ends with ". " */
.multi > li:before { 
      content: counters(item, ".") ". "; 
      counter-increment: item;
      font-weight: bold;
}