/* Enter Your Custom CSS Here */
.column-display {
    list-style: none;
    padding: 0;
    margin: 0;
    clear: both;
    width: 100%;
}
.column-3{
	-webkit-column-count: 3;
    -moz-column-count: 3;
    -o-column-count: 3;
    column-count: 3;
    -webkit-column-width: 250px;
    -moz-column-width: 250px;
    -o-column-width: 250px;
    column-width: 250px;
}
.column-display li{
	position: relative;
	padding-bottom: 5px;
	padding-left: 20px;
}
.column-display li:before{
	content: "";
	height: 5px;
	width: 5px;
	background: #333;
	position: absolute;
	top: 5px;
	left: 1px;
}