/*                                                                      */
/* 		                	LISTS       	                   	        */
/*                                                                      */
/* v001 02 Aug 2019 -   Initial version created from WOL mobile.css     */
/* v002 06 Aug 2019 -   Modified to new content element names           */
/*                                                                      */
/*                                                                      */

article ul {
  padding: 0 0 10px 20px;
  margin: 0;
}
article p+ul {		/* If a para is followed directly by a UL, gap should be smaller */
  margin-top: -5px;
}
article ul li {
  list-style: none;
  padding-left: 0.5em; 
  text-indent: -1.25em;
}
article ul li:before {
  content: '\2022';
  /*content: '\25A0';*/             /* Square bullet */
  padding-right: 8px;       /* 12px for 100% square bullet */
  font-size: 200%;		    /* 100% for square bullet */
  vertical-align: bottom;	/* top for square bullet? */;
  color: #F0AB00 /* __ ARP 3 __ Gold (Pantone 130c) */;      /* ARP 3: Gold */
}

p.indent {      /* For a paragraph that needs to align with a LI or OL */
  padding-left: 45px;
}