/* CSS Document */
.home-text-box-title {
  color: white;
  text-shadow:
   -1px -1px 0 #000,  
    1px -1px 0 #000,
    -1px 1px 0 #000,
     1px 1px 0 #000;
}

.home-text-box-text {
  color: white;
  text-shadow:
   -1px -1px 0 #000,  
    1px -1px 0 #000,
    -1px 1px 0 #000,
     1px 1px 0 #000;
}

.button-sign-up {
  background-color: #ed1c24; /* Tried to match apprenticeship and logo red */
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
}

.button-sign-up:hover {
  background-color: #e77375; /* Lighter Hue of the apprenticeship and logo red */
  color: white;
  text-decoration: none;
}

.nrwa-logo-font {
font-family: minion-pro-caption, serif;
font-style: normal;
font-size: 20px;
font-weight: 400;
}
.nrwa-logo-font-apprenticeship {
	font-family: minion-pro-caption, serif;
	font-style: italic;
	font-weight: 400;
	font-size: 20px;
	color: #ed1c24; /* Tried to match apprenticeship and logo red */
}


ol {
  counter-reset: list;
  margin: 0;
}

ol > li {
  list-style: none;
  position: relative;
}

ol > li:before {
  counter-increment: list;
  content: "(" counter(list, lower-alpha) ") ";
  position: absolute;
  left: -1.8em;
}