.social .uk-icon-button {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 36px;
  height: 36px;
  border-radius: 500px;
  background: #fff;
  color: #0A4C91;
  vertical-align: middle;
  /* 1 */
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  -webkit-transition-property: color, background-color;
  -o-transition-property: color, background-color;
  transition-property: color, background-color;
}

/* Hover */

.social .uk-icon-button:hover {
  background-color: #f8f8f8;
  color: #98bfed;
}

.uk-article ul {
    list-style-type: disc;
}
.uk-article ul ul {
    list-style-type: circle;
}
.uk-article ul ul ul {
    list-style-type: square;
}

.uk-article ol {
    list-style-type: decimal;
}
.uk-article table p {
	margin:0;
}
/* default for th is left aligned in tailwind css; this corrects that so th cells behave as expected; color was optional */
.uk-article th {
    background-color: #0A4C91;
    color: #fff;
    text-align: center;
}
/* added this class so all borders can be added otherwise tables with no borders or using other classes are affected */
.uk-article .all-borders table, th, td {
  border: 1px solid #666;
  border-collapse: collapse;
}


/* dropdown */
header .uk-dropdown li {position: relative;}
header .uk-dropdown .uk-dropdown {left: 100% !important; top: -10px !important;}