diff --git a/bracket.module b/bracket.module
index b402835..9cbce1b 100644
--- a/bracket.module
+++ b/bracket.module
@@ -546,7 +546,9 @@ function bracket_form(&$node) {
 
   $form['bracket']['logo'] = array(
     '#type' => 'fieldset',
-    '#title' => t('Logo Image')
+    '#title' => t('Logo Image'),
+    '#prefix' => '<div class="logo-image">',
+    '#suffix' => '</div>',
   );
 
   if (variable_get('bracket_image_upload', FALSE)) {
@@ -597,7 +599,9 @@ function bracket_form(&$node) {
 
   $form['bracket']['sponsorlogo'] = array(
     '#type' => 'fieldset',
-    '#title' => t('Sponsor Logo Image')
+    '#title' => t('Sponsor Logo Image'),
+    '#prefix' => '<div class="sponsor-logo-image">',
+    '#suffix' => '</div>',
   );
 
   if (variable_get('bracket_image_upload', FALSE)) {
@@ -653,6 +657,8 @@ function bracket_form(&$node) {
   $form['bracket']['options'] = array(
     '#type' => 'fieldset',
     '#title' => t('Bracket Display Options'),
+    '#prefix' => '<div class="bracket-display-options">',
+    '#suffix' => '</div>',
     '#collapsed' => TRUE,
     '#collapsible' => TRUE,
     '#tree' => TRUE
@@ -730,6 +736,8 @@ function bracket_form(&$node) {
   $form['bracket']['options']['image_fonts'] = array(
     '#type' => 'fieldset',
     '#title' => t('Image Font Files'),
+    '#prefix' => '<div class="image-font-files">',
+    '#suffix' => '</div>',
     '#collapsed' => FALSE,
     '#collapsible' => FALSE,
     '#tree' => TRUE,
