int bottom = paddingBottom == null ? 2 : Math.max(2, paddingBottom.intValue());
int right = paddingRight == null ? 12 : Math.max(12, paddingRight.intValue());
button.setMargin(new Insets(top, left, bottom, right));
RectPropertySet padding = style.getCachedPadding();
padding.setRight(0);
padding.setLeft(0);
padding.setTop(0);
padding.setBottom(0);
FSDerivedValue widthValue = style.valueByName(CSSName.WIDTH);
if (widthValue instanceof LengthValue)
intrinsicWidth = new Integer(getBox().getContentWidth());