/*
Description: Custom css
*/

ul.limheight {
  margin-left: 0;
    height: 220px;
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2; /*3 is just placeholder -- can be anything*/
  -webkit-padding-start: 5px;
    text-indent: -4px;
}

ul.limheight li {
    display: list-item;
    padding-bottom: 4px;
    list-style: none;
}

ul.limheight li:before {
  content: "• ";
}

ul.limheight200 {
    height: 200px;
}

ul.limwidth700 {
    max-width: 700px;
}

ol li {
    display: list-item;
    padding-bottom: 4px;
    list-style: inherit;
}
