'fieldset',
      '#title' => t('Page Layout'),
      '#description' => t('Use these settings to set the width of the page, each sidebar, and to set the position of sidebars.'),
    );
    if (theme_get_setting('layout_enable_method') == 'on') {
      $form['at']['page_layout']['select_method'] = array(
        '#type' => 'fieldset',
        '#title' => t('Sidebar Position'),
        '#collapsible' => FALSE,
        '#collapsed' => FALSE,
      );
      $form['at']['page_layout']['select_method']['layout_method'] = array(
        '#type' => 'radios',
        '#description' => t('The sidebar layout descriptions are for LTR (left to right languages), these will flip in RTL mode.'),
        '#default_value' => theme_get_setting('layout_method'),
        '#options' => array(
          0 => t('Layout #1 Standard three column layout — Sidebar first | Content | Sidebar last'),
          1 => t('Layout #2 Two columns on the right — Content | Sidebar first | Sidebar last'),
          2 => t('Layout #3 Two columns on the left — Sidebar first | Sidebar last | Content'),
        ),
      );
      $form['at']['page_layout']['layout_enable_settings'] = array(
        '#type' => 'hidden',
        '#value' => theme_get_setting('layout_enable_settings'),
      );
    } // endif layout method
  } // endif layout settings
}