ul.cam_listing {
    list-style-type: none;
}
ul.cam_listing li.cam_exam {
    border-top: 2px solid powderblue;
    margin: 24px 0px;
}
ul.cam_listing li.cam_exam a.cam_record {
    color: steelblue;/*cadetblue;*/
    font-weight: bolder;
}
ul.cam_listing li.cam_exam a.cam_record::after {
    content: "";            /* Required for the pseudo-element to render */
    display: inline-block;  /* Allows width and height sizing */
    width: 21px;            /* Set your desired width */
    height: 18px;           /* Set your desired height */
    margin-left: 5px;       /* Adds space between text and image */
  
  background-image: url('/images/cam_record.png');
  background-size: contain;    /* Scales the image to fit the box */
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: middle;
}