/*                                                                      */
/* 		                	LISTS       	                   	        */
/*                                                                      */
/* v001 02 Aug 2019 -   Initial version created from WOL mobile.css     */
/* v002 06 Aug 2019 -   Modified to new content element names           */
/* v003 20 Dec 2019 -   Add style for second-level bullets              */
/*                                                                      */
/*                                                                      */

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.5em;
}
article ul li:before {
  /*content: '\2022';*/
  content: '■';
  padding-right: 12px;
  font-size: 100%;		/* 170% for \2022 round bullet */
  vertical-align: top;	/* middle for \2022 round bullet */;
  color: #fbb911  /* BAT Yellow */;
}

article ul ul {
  padding-top: 10px;
  padding-bottom: 1px;
}
article ul ul li:before {
  content: '-';
  font-size: 200%;		/* too small at 100% */
  color: #fbb911  /* BAT Yellow */;
}



p.footnote {
  list-style: none;
  padding-left: 2em; 
  text-indent: -1.5em;
}
p.footnote:before {
  content: '*';
  padding-right: 12px;
  font-size: 150%;		/* 170% for \2022 round bullet */
  vertical-align: top;	/* middle for \2022 round bullet */;
  color: #232F5D /* BAT Blue */;
}
p.footnote {
  font-style: italic;
}
