/*                                                                      */
/* 		                	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.5em;
}
article ul li:before {
  /*content: '\2022';*/
  content: '\25A0';             /* Square bullet */
  padding-right: 12px;
  font-size: 100%;		/* 170% for \2022 round bullet */
  vertical-align: top;	/* middle for \2022 round bullet */;
  color: #0072ce /* CSG Blue (Pantone 285C) */;      /* Same as H2 colour */
}

