/**
  * Add this property to the CssStyle
  *
  * @param style The CssStyle
  */
 public void addToStyle(ApplContext ac, CssStyle style) {
   if (top != null) {
     top.addToStyle(ac, style);
   }
   if (right != null) {
     right.addToStyle(ac, style);
   }
   if (left != null) {
     left.addToStyle(ac, style);
   }
   if (bottom != null) {
     bottom.addToStyle(ac, style);
   }
 }