When using the unpFormViewer and unpFormEditor controls you can make use of the following CSS classes for buttons, fieldsets and panels;
- panel - adds a curved corner surround to a div
- fieldset - a definition is created to layout fieldsets, no class name required
- left-aligned - will always left align a panel or container regardless of device orientation
- button - a class which creates a generic button, can be used in conjunction with...
- savebutton - a save button to be used in conjunction with .button
- editbutton - an edit button to be used in conjunction with .button
- cancelbutton - a cancel button to be used in conjunction with .button
<div class="panel">
This is a panel (or div) with  
<strong> .panel </strong>
  class assigned
</div>
<fieldset>
<legend>This is a fieldset</legend>
The contents are treated the same as the panel above
</fieldset>
<div class="panel left-aligned">
This panel will always be left-aligned
</div>
<div style="padding-top:5px;">
<input type="button" class="button" value="Generic Button (.button)" />
</div>
<div style="padding-top:5px;">
<input type="button" class="button savebutton"
value="Save Button (.button .savebutton)" />
</div>
<div style="padding-top:5px;">
<input type="button" class="button editbutton"
value="Edit Button (.button .editbutton)" />
</div>
<div style="padding-top:5px;">
<input type="button" class="button cancelbutton"
value="Cancel Button (.button .cancelbutton)" />
</div>